输入在第一行给出两个不超过 100 的正整数 N 和 M,分别是学生人数和判断题数量。第二行给出 M 个不超过 5 的正整数,是每道题的满分值。第三行给出每道题对应的正确答案,0 代表“非”,1 代表“是”。随后 N 行,每行给出一个学生的解答。数字间均以空格分隔。用C语言帮我写
时间: 2024-02-01 19:15:06 浏览: 420
以下是用 C 语言实现的代码:
```c
#include <stdio.h>
int main()
{
int N, M;
scanf("%d %d", &N, &M);
int score[M];
for (int i = 0; i < M; i++)
{
scanf("%d", &score[i]);
}
int answer[M];
for (int i = 0; i < M; i++)
{
scanf("%d", &answer[i]);
}
int total_score = 0;
for (int i = 0; i < N; i++)
{
int student_score = 0;
for (int j = 0; j < M; j++)
{
int ans;
scanf("%d", &ans);
if (ans == answer[j])
{
student_score += score[j];
}
}
printf("%d\n", student_score);
total_score += student_score;
}
printf("%d", total_score);
return 0;
}
```
程序首先读取两个整数 N 和 M,分别表示学生人数和判断题数量。然后,程序读取每道题的满分值和正确答案,并将它们存储在数组中。接着,程序循环 N 次,读取每个学生的解答,并计算出学生的得分。最后,程序输出每个学生的得分和总分。
阅读全文