这是我设计的程序,不足之处请指正:
#include<stdio.h>
int main(){
int a[10];
for(int i =0;i < 10;i++){
printf("请输入第%d个数",i+1);
scanf("%d",&a[i]);
}
int max = a[0];
//数组的遍历,判断a[i]是否大于max,
//如果大于则重新赋值给max,直到找出最大值
for(int i = 1;i < 10;i++){
if(a[i]>max)
max = a[i];
}
printf("max = %d\n",max);
return 0;
} |