1.使用結構體變數來表示學生資料:姓名、學號和3門課程的成績。從鍵盤輸入個學生的資料,要求列印出每個學生的姓名和3門課程的平均成績,此外要求按學生的平均成績降序輸出,按學生姓名搜尋。
view code
1 #include 2 #include 3using
namespace
std;
4struct
student5;
1011
//從鍵盤輸入資料
12void input(student* std,int
n)1320}
21//
輸出學生資訊
22void print(student* std,int
n)2334}
35//
按成績排序
36void sort(student* std,int
n)37
49 tmp=std[i];
50 std[i]=std[l];
51 std[l]=tmp;52}
53}54//
按姓名搜尋
55int search(student* std,int n,char*name)
5663
return -1;64
}6566void
main()
67
C 程式設計 第2版 課後習題答案 第4章
c 程式設計 第2版 課後習題答案 第4章 控制結構 view code 1 設計乙個程式,輸入實型變數x和y,若x y,則輸出 x y 若x2 include 3 include 4 void main 514 15 include 16 include 17 include 18 void ma...
c primer第16章課後習題答案
1.練習16.1 當我們呼叫template時,編譯器會根據函式實參的型別推斷模板實參,從而確定最匹配的繫結到模板引數t的 型別,之後編譯器用推斷出得模板引數來例項化乙個特定函式的版本,這個過程就叫做例項化。2.練習16.2 模板函式在.件中定義 ifndef template compare h ...
Lua程式設計第4版第6章課後練習答案
6.1 略 6.2 用lselect 2,函式 6.3function f63 local t table.pack t t.n nil t.n t.n 1return table.unpack t end print f63 2 3,4 5 6.4 說下思路 pair每乙個元素,把每個元素都隨機從...