標題:
[隨堂測驗] 陣列 (五) - 成績表 (一)
[打印本頁]
作者:
王瑞喻
時間:
2019-9-20 15:21
標題:
[隨堂測驗] 陣列 (五) - 成績表 (一)
本帖最後由 tonyh 於 2019-10-2 12:22 編輯
利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:
[attach]7178[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
洪藜芸
時間:
2019-9-21 11:07
本帖最後由 洪藜芸 於 2019-9-21 11:09 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"座號\t國文\t數學\t英文"<<endl;
cout<<"______________________________"<<endl;
int a[5][3]={{68,43,65},{85,62,73},{95,100,98},{86,71,88},{88,77,96}};
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int s=0;s<3;s++)
{
cout<<a[i][s]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪子涵
時間:
2019-9-21 11:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[5][3]={{100,100,100},{90,90,90},{80,80,80},{0,0,0},{60,60,60}};
cout<<"座號\t國文\t英文\t數學 \n==============================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1;
for(int j=0;j<3;j++)
{
cout<<"\t"<<n[i][j];
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2019-9-21 11: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;
}
複製代碼
作者:
鄭羽捷
時間:
2019-9-21 11:14
本帖最後由 鄭羽捷 於 2019-9-21 11:35 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"座號\t國文\t數學\t英文"<<endl;
cout<<"==============================="<<endl;
int n[5][3]={{96,89,98},{97,95,87},{98,100,94},{96,91,88},{88,100,100}};
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int j=0; j<3; j++)
{
cout<<n[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-9-21 11:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[5][3]={{62,89,78},{95,97,93},{80,98,89},{99,100,100},{97,100,98}};
cout<<"座號\t國文\t英文\t數學 \n==============================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1;
for(int j=0;j<3;j++)
{
cout<<"\t"<<n[i][j];
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-9-21 11:14
本帖最後由 郭哲維 於 2019-9-21 11:39 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[5][3]={{100,90,75},{70,79,90},{100,100,100},{70,95,95},{30,77,99}};
cout<<"座號\t國文\t數學\t英文"<<endl;
cout<<"================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int s=0;s<3;s++)
{
cout<<a[i][s]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-9-21 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"座號\t國文\t英文\t數學"<<endl;
cout<<"-----------------------"<<endl;
int n[5][3] = {{95,100,100},
{95,95,100},
{100,100,80},
{90,95,95},
{100,85,100}};
for(int i=0;i<5;i++)
{
cout<<i+1;
for(int j=0;j<3;j++)
{
cout<<"\t"<<n[i][j];
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-9-21 11:15
本帖最後由 蔡少宇 於 2019-9-21 11:39 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"座號\t國文\t數學\t英文"<<endl;
cout<<"==============================="<<endl;
int a[5][3]={{100,92,99},
{98,95,96},
{100,91,82},
{99,94,96},
{88,77,96}};
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int s=0;s<3;s++)
{
cout<<a[i][s]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2019-9-21 11:16
#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;
}
複製代碼
作者:
陳宇柏
時間:
2019-9-24 17:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[5][3]={{100,100,100},{0,0,0},{1,1,1},{1,23,98},{45,62,61}};
cout<<"座號 國文 英文 數學"<<endl;
cout<<"========================="<<endl;
for(int i=0; i<5; i++)
{
cout<<(i+1)<<"\t";
for(int j=0; j<3; j++)
{
cout<<n[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-9-28 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int l[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<=2; j++)
{
cout<<l[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-9-28 22:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[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;
for(int j=0; j<3; j++)
{
cout<<"\t"<<n[i][j];
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-7-23 19:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string w[4]={"座號","國文","英文","數學"};
for(int a=0;a<4;a+=1)
cout<<w[a]<<"\t";
cout<<endl<<"============================"<<endl;
int n[5][3]={{90,85,85},{70,75,80},{80,95,80},{70,95,75},{80,85,95}};
for(int i=0;i<5;i+=1)
{
cout<<i+1<<"\t";
for(int j=0;j<3;j+=1)
cout<<n[i][j]<<"\t";
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2