C语言自定义一个函数,求10同学评价成绩
时间: 2023-05-21 16:05:19 浏览: 93
C语言程序设计-有一个一维数组score,内放10个学生的成绩,用一个函数来求平均成绩;
5星 · 资源好评率100%
可以使用如下的 C 语言代码实现:
```c
#include <stdio.h>
void evaluate_score(int score) {
if(score > 90) {
printf("十分优秀!");
}
else if(score > 80) {
printf("非常好!");
}
else if(score > 70) {
printf("不错!");
}
else if(score > 60) {
printf("还可以!");
}
else {
printf("需要努力!");
}
}
int main() {
int score = 85;
evaluate_score(score);
return 0;
}
```
这个程序中定义了一个名为 `evaluate_score` 的函数,它接受一个整数参数 `score` 表示分数,在函数中根据分数的不同输出不同的评价。在 `main` 函数中调用 `evaluate_score` 函数,并传入具体的分数进行评价。
阅读全文