|
陣列 (六) - 成績表 1
本帖最後由 葉桔良 於 2022-6-18 17:25 編輯
利用二維陣列,試做一個包含五位同學,各三組分數的成績表格。
表格的形式如下:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //設定陣列
- cout<<"座號\t國文\t英文\t數學"<<endl;
- cout<<"============================"<<endl;
- //顯示陣列
- system("pause");
- return 0;
- }
複製代碼 |
|