c语言编写程序:输入10个同学的成绩存放在score数组中,统计低于平均分的人数,并将低于平均分的分值输出显示。
时间: 2024-06-13 12:08:59 浏览: 151
以下是C语言编写程序,输入10个同学的成绩存放在score数组中,统计低于平均分的人数,并将低于平均分的分值输出显示的代码:
```c
#include <stdio.h>
int main() {
int score[10];
int i, sum = 0, count = 0;
float average;
printf("请输入10个同学的成绩:\n");
for (i = 0; i < 10; i++) {
scanf("%d", &score[i]);
sum += score[i];
}
average = (float)sum / 10;
printf("平均分为:%.2f\n", average);
printf("低于平均分的分值为:");
for (i = 0; i < 10; i++) {
if (score[i] < average) {
printf("%d ", score[i]);
count++;
}
}
printf("\n低于平均分的人数为:%d\n", count);
return 0;
}
```
相关问题
C语言编写程序:任意输入10个同学的成绩存放到一维数组中,求这10个同学的平均分,并输出低于平均分的所有同学的成绩
好的,我可以回答这个问题。
以下是C语言编写程序的示例代码:
```c
#include <stdio.h>
int main() {
int n = 10; // 10个同学
int scores[n]; // 一维数组存放成绩
int total = 0; // 所有成绩的总和
// 输入10个同学的成绩
for (int i = 0; i < n; i++) {
printf("请输入第%d个同学的成绩:", i+1);
scanf("%d", &scores[i]);
total += scores[i]; // 累加总和
}
// 计算平均分
float avg = total / (float)n;
// 输出低于平均分的所有同学的成绩
printf("低于平均分的同学的成绩为:\n");
for (int i = 0; i < n; i++) {
if (scores[i] < avg) {
printf("%d ", scores[i]);
}
}
return 0;
}
```
希望能帮到你!
用C语言程序段写出输入m个学生的成绩存放在score数组里,统计这些学生的平均分和低于平均分的人数
在C语言中,你可以通过以下几个步骤来实现这个功能:
首先,我们需要定义一个结构体来存储每个学生的成绩信息,然后创建一个数组来存放学生数据。接着,我们计算平均分并遍历数组找出低于平均分的学生。
```c
#include <stdio.h>
// 定义学生结构体
typedef struct {
int score;
} Student;
// 计算平均分
double calculate_average(Student scores[], int m) {
int total = 0;
for (int i = 0; i < m; i++) {
total += scores[i].score;
}
return (double)total / m;
}
// 统计低于平均分的人数
int count_below_average(Student scores[], double avg, int m) {
int below_avg_count = 0;
for (int i = 0; i < m; i++) {
if (scores[i].score < avg) {
below_avg_count++;
}
}
return below_avg_count;
}
int main() {
const int m = 5; // 输入的学生人数,可根据需要修改
Student scores[m]; // 存储学生分数的数组
printf("请输入%d个学生的成绩:\n", m);
for (int i = 0; i < m; i++) {
scanf("%d", &scores[i].score);
}
double avg = calculate_average(scores, m); // 计算平均分
printf("平均分是:%.2f\n", avg);
int below_avg_students = count_below_average(scores, avg, m); // 统计低于平均分的人数
printf("有%d个学生的成绩低于平均分。\n", below_avg_students);
return 0;
}
```
阅读全文