我正在尝试将3个数字从最小到最大打印出来。我当前的身体{}和while {}的第二个身体(在底部)工作,而他们在main(),但我当前的身体{}不起作用..即使第二个身体的同时{ (在底部)有效。
基本上我必须{}身体。它们都在函数main()中工作。只有一个在自己的功能中工作(第二个在最底层)并且我需要在完整代码中显示的那个工作。有任何想法吗???非常感谢你的帮助!
通过不工作我的意思是控制台只是在键入3个整数后等待。
#include <stdio.h>
#include <stdlib.h>
void sortThree(int *a, int *b, int *c);
int main(int argc, char *argv[])
{
int a, b, c, hold;
printf("Please input three numbers\n"
"with a space between each and then press enter: ");
scanf("%lf %lf %lf", &a, &b, &c);
sortThree( &a, &b, &c);
printf("\n\n%lf %lf %lf", a, b, c);
system("PAUSE");
return 0;
}
void sortThree(int *a, int *b, int *c)
{
while ((*a>*b)||(*b>*c)||(*a>*c))
{
if (*a>*b)
*b = (*a += *b -= *a) - *b;
if (*b>*c)
*b = (*c += *b -= *c) - *b;
if (*a>*c)
*c = (*a += *c -= *a) - *c;
}
}
这是第二个{}身体。它在main()中和在它自己的函数中有效。
if (*a>*b)
{
int hold;
hold= *a;
*a = *b;
*b = hold;
}
if (*b>*c)
{
int hold;
hold= *b;
*b = *c;
*c = hold;
}
if (*a>*c)
{
int hold;
hold= *a;
*a = *c;
*c = hold;
}
答案 0 :(得分:2)
第一个因为语法错误而无法正常工作。你应该使用
If (*a > *c)
而不是
If (a > c)
答案 1 :(得分:2)
第一个不起作用,因为您不能依赖从左到右的评估顺序。表达式
*b = (*a += *b -= *a) - *b;
是一个问题,因为你试图在没有中间序列点的情况下两次更改变量的值。你做不到 - 这是未定义的行为。
答案 2 :(得分:0)
奇怪的是,这不是函数,它是扫描和打印为双倍而不是int的问题。
scanf("%i %i %i", &a, &b, &c);
sortThree( &a, &b, &c);
printf("\n\n%i %i %i", a, b, c);
这没有问题(至少在Code :: Blocks中)。据我所知,它很有效!
*b = (*a += *b -= *a) - *b;