程式設計與演算法(三)第2周測驗 2019夏季

2021-09-25 12:12:08 字數 1525 閱讀 3669

程式設計填空:學生資訊處理程式

輸入輸入資料為一行,包括:

姓名,年齡,學號,第一學年平均成績,第二學年平均成績,第三學年平均成績,第四學年平均成績。

其中姓名為由字母和空格組成的字串(輸入保證姓名不超過20個字元,並且空格不會出現在字串兩端),年齡、學號和學年平均成績均為非負整數。資訊之間用逗號隔開。

輸出輸出一行資料,包括:

姓名,年齡,學號,四年平均成績。

資訊之間用逗號隔開。

樣例輸入

tom hanks,18,7817,80,80,90,70

樣例輸出

tom hanks,18,7817,80

提示必須用類實現,其中所有成員變數都是私有的。

輸出結果中,四年平均成績不一定為整數。

#include

#include

#include

#include

#include

#include

using

namespace std;

class

student

return sum/number;

}void

input()

}void

output()

};intmain()

奇怪的類複製輸入無

輸出9225

樣例輸入

none

樣例輸出922

5

#include

using

namespace std;

class

sample

sample

(int n)

sample

(const sample &a)};

void

printanddouble

(sample o)

intmain()

超簡單的複數類輸入無

輸出3+4i

5+6i

樣例輸入

無樣例輸出

3+4i

5+6i

#include

#include

#include

using

namespace std;

class

complex

// 在此處補充你的**

complex()

complex

(const

char

*p)}

;int

main()

哪來的輸出輸入無

輸出21樣例輸入

無樣例輸出21

#include

using

namespace std;

class

a// 在此處補充你的**~a

()};

intmain()

程式設計與演算法(三)第07周測驗

填寫模板 printarray,使得程式輸出結果是 tomjackmaryjohn 10 不得編寫sumarray函式 include include using namespace std template t sumarray 在此處補充你的 int main cout sumarray arr...

程式設計與演算法(一)第6周測驗 2019夏季

001 pell數列 描述pell數列a1,a2,a3,的定義是這樣的,a1 1,a2 2,an 2 an 1 an 2 n 2 給出乙個正整數k,要求pell數列的第k項模上32767是多少。輸入第1行是測試資料的組數n,後面跟著n行輸入。每組測試資料佔1行,包括乙個正整數k 1 k 100000...

程式設計與演算法(三)第06周測驗 2020春季

輸入無輸出 d fun b fun d fun nbval 2 nbval 24 ndval 8 b fun nbval 12 樣例輸入 無樣例輸出 d fun b fun d fun nbval 2 nbval 24 ndval 8 b fun nbval 12 如下 include using ...