本帖最後由 李泳霖 於 2024-7-27 16:05 編輯
新宣告一個一維陣列,以用來插入姓名欄位,如下圖所示。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int a[5][3]= {{90,85,85},{70,75,80},{80,95,80},{70,95,75},{80,85,95}};
- string c[5] {"王大明","李大頭","蘇小安","余美美","張醜醜"};
- cout<<"座號\t姓名\t國文\t英文\t數學"<<endl<<"--------------------------------------------"<<endl;
- for(int b=0; b<=4; b++)//列
- {
- cout<<b+1<<"\t";
- cout<<c[b]<<"\t";
- for(int d=0; d<=2; d++)//欄
- cout<<a[b][d]<<"\t";
-
- }
- return 0;
- }
複製代碼 |