一个“输出最大数的问题”,大神帮忙找找错误。
问题:依次将10个数输入,要求将其中最大的数输出。我是个初学者用了笨方法,但看着程序没问题输出结果却不正确,帮忙找找怎么回事,另外有什么简便方法告诉我也行。前提是我能接受,我现在学到了C语言第六章“循环控制”,第七章“数组”还没学。谢谢了!
#include<stdio.h>
void main()
{int a,b,c,d,e,f,g,h,i,j,max;
scanf("%d,%d",&a,&b);
if(a>b) max=a;
else max=b;
scanf("%d",&c);
if(c>max) max=c;
else max=max;
scanf("%d",&d);
if(d>max) max=d;
else max=max;
scanf("%d",&e);
if(e>max) max=e;
else max=max;
scanf("%d",&f);
if(f>max) max=f;
else max=max;
scanf("%d",&g);
if(g>max) max=g;
else max=max;
scanf("%d",&h);
if(h>max) max=h;
else max=max;
scanf("%d",&i);
if("i>max") max=i;
else max=max;
scanf("%d",&j);
if(j>max) max=j;
else max=max;
printf("%d",max);
}