Input a 4*3 table,calculate the sum of each row. Inut:12 integers in 4*3 tabel Output:4 integers with each one in sibgle line,用c语言回答
时间: 2024-03-02 22:51:16 浏览: 88
YOLOv4_VOC.zip
好的,针对您的问题,以下是C语言的代码实现:
```c
#include <stdio.h>
int main() {
int table[4][3];
int row_sum[4] = {0};
// Input the table
printf("Please input the 4*3 table:\n");
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 3; j++) {
scanf("%d", &table[i][j]);
row_sum[i] += table[i][j];
}
}
// Output the row sum
printf("The sum of each row is:\n");
for (int i = 0; i < 4; i++) {
printf("%d\n", row_sum[i]);
}
return 0;
}
```
以上代码中,我们首先定义了一个 4*3 的二维数组 table,用于存储输入的表格数据。同时,我们还定义了一个长度为 4 的数组 row_sum,用于存储每一行的和。然后,我们通过双重循环读入表格数据,并计算每一行的和,最后输出每一行的和即可。
希望以上代码能够帮到您!
阅读全文