PAT乙級1004題目 成績排名 C

2021-08-16 18:43:31 字數 944 閱讀 3671

//輸入格式:每個測試輸入包含1個測試用例,格式為

/// 第1行:正整數n

// 第2行:第1個學生的姓名 學號 成績

// 第3行:第2個學生的姓名 學號 成績

// ... ... ...

// 第n+1行:第n個學生的姓名 學號 成績

//其中姓名和學號均為不超過10個字元的字串,成績為0到100之間的乙個整數,這裡保證在一組測試用例中沒有兩個學生的成績是相同的。

//輸出格式:對每個測試用例輸出2行,第1行是成績最高學生的姓名和學號,第2行是成績最低學生的姓名和學號,字串間有1空格。

#include

#include

#include

#include

using

namespace

std;

#define n 100

struct stu_score

student;

int stu_high(int n, stu_score *student)

}return high_flag;

}int stu_low(int n, stu_score *student)

}return low_flag;

}int main()

int high_num = stu_high(num_op, student);

int low_num = stu_low(num_op, student);

printf("%s %s\n", student[high_num].name, student[high_num].number);

printf("%s %s\n", student[low_num].name, student[low_num].number);

return

0;}

PAT(乙級) 1004 成績排名

題目 讀入n名學生的姓名 學號 成績,分別輸出成績最高和成績最低學生的姓名和學號。輸入格式 每個測試輸入包含1個測試用例,格式為 第1行 正整數n 第2行 第1個學生的姓名 學號 成績 第3行 第2個學生的姓名 學號 成績 第n 1行 第n個學生的姓名 學號 成績其中姓名和學號均為不超過10個字元的...

PAT乙級1004 成績排名

時間限制 400 ms 記憶體限制 65536 kb 長度限制 8000 b 判題程式 standard 作者 chen,yue 讀入n名學生的姓名 學號 成績,分別輸出成績最高和成績最低學生的姓名和學號。輸入格式 每個測試輸入包含1個測試用例,格式為 第1行 正整數n 第2行 第1個學生的姓名 學...

PAT乙級 1004 成績排名

1004.成績排名 讀入n名學生的姓名 學號 成績,分別輸出成績最高和成績最低學生的姓名和學號。輸入格式 每個測試輸入包含1個測試用例,格式為 第1行 正整數n 第2行 第1個學生的姓名 學號 成績 第3行 第2個學生的姓名 學號 成績 第n 1行 第n個學生的姓名 學號 成績其中姓名和學號均為不超...