编写输入10个学生的身高,找出其中最高者的身高
时间: 2023-03-24 12:03:12 浏览: 108
找出成绩最高者
5星 · 资源好评率100%
好的,这个问题很简单。请看下面的 C 语言代码:
#include <stdio.h>
int main() {
int heights[10];
int max_height = ;
printf("请输入10个学生的身高:\n");
for (int i = ; i < 10; i++) {
scanf("%d", &heights[i]);
if (heights[i] > max_height) {
max_height = heights[i];
}
}
printf("最高的身高是:%d\n", max_height);
return ;
}
这个程序会让用户输入10个学生的身高,然后找出其中最高者的身高并输出。
阅读全文