//输入5个学生成绩,并且输出最高分。 这道题是需要利用数组来解答的。这题我发出来重要的不是结果,而是思路。#include <stdio.h>
int main()
{
//定义初始化
int score[5];
int maxscore=0;//定义一个整型数据来保存最大值
int i=0;
//利用while提示输入
while(i<5){
printf("请输入5个成绩\n");
scanf(%d,&score[i]);
i++;
}
//用for循环输出最大值
for(int i=0 ;i<5;i++){
if (maxscore<score[i]){
maxscore = score[i];//利用转换思想
}
}
printf("最大值是%d\n",maxscore);
return 0;
}
ps:题目纯手打,主要是说明思路。要有转换的思想,把自己想要的东西存起来。
|
|