標題:
陣列 (六) - 成績表 1
[打印本頁]
作者:
tonyh
時間:
2020-11-21 19:52
標題:
陣列 (六) - 成績表 1
利用二維陣列,試做一個包含五位同學,各三組分數的成績表格。
表格的形式如下:
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,85,85},
{70,75,80},
{80,95,80},
{70,95,75},
{80,85,95}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2020-11-21 20:08
本帖最後由 tonyh 於 2020-11-21 20:52 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,85,85},
{70,75,80},
{80,95,80},
{70,95,75},
{80,85,95}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2020-11-21 20:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{1,6,69},
{3,74,87},
{2,55,47},
{5,56,5},
{4,85,25}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2020-11-21 20:12
本帖最後由 tonyh 於 2020-11-21 20:54 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,85,85},
{70,75,80},
{80,90,80},
{80,85,95},
{70,95,75}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王首二
時間:
2020-11-21 20:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,85,5},
{7,75,80},
{80,95,80},
{70,7,75},
{1,2,4}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李柏穎
時間:
2020-11-21 20:13
本帖最後由 tonyh 於 2020-11-21 20:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
int a[5][4]={{1,90,85,85},
{2,70,75,80},
{3,80,95,80},
{4,70,95,75},
{5,80,85,95}};
for(int i=0; i<=4; i++)
{
for(int j=0; j<=3; j++)
cout<<a[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2020-11-21 20:13
本帖最後由 tonyh 於 2020-11-21 20:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int score[5][3]={{90,85,85},
{70,75,80},
{80,95,80},
{70,95,75},
{87,38,80}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2020-11-21 20:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{9,8,5},
{70,7,80},
{80,9,0},
{70,5,75},
{0,8,95}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2020-11-21 20:16
本帖最後由 tonyh 於 2020-11-21 20:56 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{1,2,3},
{4,5,6},
{9,10,11},
{1,5,7},
{8,8,6}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<3;j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2020-11-21 20:16
本帖最後由 tonyh 於 2020-11-21 20:57 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,85,85},
{70,75,80},
{80,95,80},
{70,95,75},
{80,85,95}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2020-11-21 20:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,80,85},
{75,70,60},
{65,60,30},
{45,60,50},
{75,90,50}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"==============================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<3;j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2020-11-21 20:22
本帖最後由 tonyh 於 2020-11-21 20:58 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j,score[5][3]={{90,88,92},
{1,8,4},
{55,28,12},
{63,55,78},
{91,82,99},};
cout<<"座號\t國語\t英文\t數學\t"<<endl;
cout<<"+++++++++++++++++++++++++++"<<endl;
for(int i=0; i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許洧熏
時間:
2020-11-21 20:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{90,100,69},
{80,97,68},
{100,70,85},
{86,96,95},
{99,82,68}};
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"==============================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<3;j++)
cout<<score[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2