从键盘输入10个学生的c语言成绩到数组中,求平均分、最高分和最低分
时间: 2023-05-01 07:03:38 浏览: 1600
题意:从键盘输入10个学生的C语言成绩,求平均分、最高分和最低分。
首先需要将输入的成绩存入一个数组中,然后可以通过遍历数组求出总成绩,从而计算平均分。最高分和最低分可以通过遍历数组比较每个成绩来得到。具体代码可以:
```python
scores = [] # 创建一个数组,用于存储成绩
# 通过for循环依次输入10位学生的成绩
for i in range(10):
score = float(input('请输入第{}个学生的成绩:'.format(i+1)))
scores.append(score) # 将输入的成绩添加到数组中
total_score = sum(scores) # 计算总成绩
average_score = total_score / len(scores) # 计算平均分
max_score = max(scores) # 获取最高分
min_score = min(scores) # 获取最低分
print('平均分为:{:.2f}'.format(average_score))
print('最高分为:{}'.format(max_score))
print('最低分为:{}'.format(min_score))
```
相关问题
用c语言编写一段代码,将10个学生的成绩由键盘输入并存放到数组中,输出其中的最高分和最低分
好的,我可以帮你回答这个问题。以下是用C语言编写的代码,可以实现将10个学生的成绩输入并存储到数组中,并输出其中的最高分和最低分:
```
#include <stdio.h>
int main() {
int scores[10], maxScore, minScore;
printf("请输入10个学生的成绩:\n");
// 将学生成绩存储到数组中
for (int i = 0; i < 10; i++) {
scanf("%d", &scores[i]);
}
// 查找最高分和最低分
maxScore = minScore = scores[0];
for (int i = 1; i < 10; i++) {
if (scores[i] > maxScore) {
maxScore = scores[i];
}
if (scores[i] < minScore) {
minScore = scores[i];
}
}
// 输出结果
printf("最高分:%d\n", maxScore);
printf("最低分:%d\n", minScore);
return 0;
}
```
以上就是用C语言编写的代码,可以将10个学生的成绩输入并存储到数组中,并输出其中的最高分和最低分。希望能对你有所帮助。
c语言从键盘输入10个学生的成绩(整型)至数组中,输出所有成绩(用一个空格分隔),并将最低分及所在下标、最高分及所在下标、以及平均分。 最后逆序排序后输出所有学生成绩。
我理解了你的要求。以下是代码示例:
```c
#include <stdio.h>
int main() {
int score[10];
int i, sum = 0, max = 0, min = 100, max_index = 0, min_index = 0;
// 读入成绩
printf("请输入10个学生的成绩:\n");
for (i = 0; i < 10; i++) {
scanf("%d", &score[i]);
sum += score[i];
if (score[i] > max) {
max = score[i];
max_index = i;
}
if (score[i] < min) {
min = score[i];
min_index = i;
}
}
// 输出成绩
printf("所有成绩:");
for (i = 0; i < 10; i++) {
printf("%d ", score[i]);
}
printf("\n最低分:%d, 下标:%d\n", min, min_index);
printf("最高分:%d, 下标:%d\n", max, max_index);
printf("平均分:%.2f\n", (float)sum / 10);
// 逆序排序
int temp;
for (i = 0; i < 5; i++) {
temp = score[i];
score[i] = score[9 - i];
score[9 - i] = temp;
}
// 输出排序后的成绩
printf("逆序排序后的成绩:");
for (i = 0; i < 10; i++) {
printf("%d ", score[i]);
}
printf("\n");
return 0;
}
```
请问我还能为您做些什么吗?
阅读全文