1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课外】14.指针2/7-1 C程序设计 实验5-7 数组指针作函数参数.md

39 lines
830 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 7-1 C程序设计 实验5-7 数组指针作函数参数
数组指针作函数参数
输入m个学生最多30人n门课程最多5门的成绩然后计算并打印每个学生各门课的总分和平均分。其中m和n的值由用户从键盘输入。
### 输入格式:
输入顺序如下:
```
学生个数m 课程数n
学生1课程1分数 学生1课程2分数 ... 学生1课程n分数
学生2课程1分数 学生2课程2分数 ... 学生2课程n分数
...
学生m课程1分数 学生m课程2分数 ... 学生m课程n分数
```
### 输出格式:
每个学生总分(整数) 平均分实数保留1位小数
### 输入样例:
在这里给出一组输入。例如:
```in
2 3
61 62 70
75 82 90
```
### 输出样例:
在这里给出相应的输出。例如:
```out
193 64.3
247 82.3
```