编写一个c语音程序,能完成 输入某个学生的信息(含学号,姓名,年龄,六门课程分数-高数/英语/c语言/工程制图/大学物理/信息论,它们的课程积分分别为4/3/4/3/3/3),计算课程总积分。
时间: 2023-06-12 18:07:06 浏览: 122
下面是一个简单的 C 语言程序,可以输入学生的信息并计算课程总积分:
```c
#include <stdio.h>
int main() {
int id, age;
char name[20];
float math, english, c, engineering, physics, information, total;
printf("请输入学生信息:\n");
printf("学号:");
scanf("%d", &id);
printf("姓名:");
scanf("%s", name);
printf("年龄:");
scanf("%d", &age);
printf("高数分数:");
scanf("%f", &math);
printf("英语分数:");
scanf("%f", &english);
printf("C语言分数:");
scanf("%f", &c);
printf("工程制图分数:");
scanf("%f", &engineering);
printf("大学物理分数:");
scanf("%f", &physics);
printf("信息论分数:");
scanf("%f", &information);
total = math * 4 + english * 3 + c * 4 + engineering * 3 + physics * 3 + information * 3;
printf("课程总积分:%f\n", total);
return 0;
}
```
运行程序后,按照提示输入学生的信息即可计算课程总积分。
阅读全文