結構體 學生成績輸入和輸出

2022-08-03 10:54:16 字數 790 閱讀 3494

time limit: 1 sec  memory limit:

128 mb

submit: 186  solved: 57

[submit][status][web

board]編寫乙個函式print,列印乙個學生的成績陣列,該陣列中有5個學生的資料,每個學生的資料報括num(學號)、name(姓名)、score[3](3門課的成績)。編寫乙個函式input,用來輸入5個學生的資料。

5個學生的學號,姓名,3門課的成績

5個學生的學號,姓名,3門課的成績

1001 zhangsan 100 90 86

1002 lisi 90 20 80

1003 wangwu 90 90 89

1004 yanping 100 100 100

1005 xiaoxiao 60 60 60

1001 zhangsan 100 90 86

1002 lisi 90 20 80

1003 wangwu 90 90 89

1004 yanping 100 100 100

1005 xiaoxiao 60 60 60

#include#includeusing namespace std;

struct student

; void input(student *stu,int n )

} void print(student *stu,int n )

{int i;

for(i=0;i<5;i++)

{cout<

結構體 學生成績輸入和輸出

問題及 編寫乙個函式print,列印乙個學生的成績陣列,該陣列中有5個學生的資料,每個學生的資料報括num 學號 name 姓名 score 3 3門課的成績 編寫乙個函式input,用來輸入5個學生的資料。5個學生的學號,姓名,3門課的成績 5個學生的學號,姓名,3門課的成績 1001 zhang...

學生成績輸入和輸出

description 編寫乙個函式print,列印乙個學生的成績陣列,該陣列中有5個學生的資料,每個學生的資料報括num 學號 name 姓名 score 3 3門課的成績 編寫乙個函式input,用來輸入5個學生的資料。input 5個學生的學號,姓名,3門課的成績 output 5個學生的學號...

學生成績管理 結構體

要求 1 計算每個學生三門課的平均成績,並輸出。2 求出平均分最高的學生資料,並輸出。格式如下樣例 input 第一行 n,表示n 個學生 下面n 行 每行資料報括學號 班級 姓名 三門課成績。output 輸出每個學生三門課的平均成績,以及平均分最高分學生資料 包括學號 班級 姓名 三門課成績,平...