標題:
陣列 (七) - 成績表 1
[打印本頁]
作者:
鄭繼威
時間:
2022-12-24 10:37
標題:
陣列 (七) - 成績表 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;
}
複製代碼
作者:
宜儒
時間:
2022-12-24 14:09
#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數學\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;
}
複製代碼
作者:
陳宥霖
時間:
2022-12-24 14:11
#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;
}
複製代碼
作者:
翁川祐
時間:
2022-12-24 14:14
#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;
}
複製代碼
作者:
羅紹齊
時間:
2022-12-24 14:21
#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;
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;
}
複製代碼
作者:
楊芊琦
時間:
2022-12-24 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{30,40,33},{70,80,89},{59,59,59},{0,1,4},{100,50,89}};
cout<<"\t國文\t數學\t生物\t"<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"號的成績:";
for(int e=0;e<=2;e++)
{
cout<<score[i][e]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2022-12-24 14:33
#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;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-24 14:41
6
作者:
盧禹丞
時間:
2022-12-24 14:42
#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;
}
複製代碼
作者:
陳牧謙
時間:
2022-12-31 00:20
#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;
}
複製代碼
作者:
羅暐傑
時間:
2023-1-6 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<<"座號 國文 英文 數學"<<endl;
cout<<"======================"<<endl;
for(int i=0; i<5; i++)
{
cout<<i+1<<" ";
for(int j=0; j<3; j++)
cout<<score[i][j]<<" ";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2023-4-12 18:39
#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;
}
複製代碼
作者:
朱奕祈
時間:
2024-1-23 18:43
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2