c语言的小细节
#include <stdio.h>#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int a, b, c, max;
scanf("%d,%d,%d", &a, &b, &c);
if( a>b) max = a;
else max = b;
if( c>max) max = c;
printf("%d", max);
return 0;
}第三行代码scanf(%d之间的“,”)有的话结果不是最大的那个数,当没有那个“,”输出的结果就是最大数。请各位大佬帮忙解答一些