我在自学C语言~~大家也来看看我学的是不是很乱啊~ 有啥好建议提个吧 ~~我好解决~~
我認為這么比較簡單.
/*
max.C -- the biggest number
by 寂寞的柳丁
07.08.08
*/
#include "stdio.h"
#include "conio.h"
main()
{
int a,b,c,max1,max2,max;
printf("please input three numbers:\n");
scanf("%d%d%d",&a,&b,&c);
max1=(a>b?a:b);
max2=(b>c?b:c);
max=(max1>max2?max1:max2);
printf("the biggest number is:\nmax=%d",max);
getch();
}
#include<stdio.h>
main()
{
int i,a[3],max;
printf("please intput 3 numbers:");
for(i=0;i<3,i++)
scanf("%d",a[i]);
/*比较出最大的数*/
max=a[0];
if(max<a[1])
max=a[1];
if(max<a[2])
max=a[2];
printf("The largerest number is:%d",max);
getch();
}
主要是算法问题,算法好简单的,不要搞得太复杂
[此贴子已经被作者于2007-8-8 20:03:39编辑过]