標題:
陣列 (五) - 成績表 (一)
[打印本頁]
作者:
tonyh
時間:
2015-1-31 11:38
標題:
陣列 (五) - 成績表 (一)
本帖最後由 tonyh 於 2015-1-31 11:56 編輯
利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:
[attach]1138[/attach]
#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;
}
複製代碼
作者:
李知易
時間:
2015-1-31 11:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][4]={{56,56,89,87},{100,100,100,100},{74,88,98,89},{73,88,92,55}};
cout<<"座號\t國\t數\t自\t社"<<endl;
cout<<"==================================="<<endl;
for(int i=0;i<5;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<4;j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2015-1-31 12:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[5][3]={{1,2,3},{4,5,6},{7,8,9},{10,11,12},{13,14,15}};
cout<<"No.\t國\t英\t社"<<endl;
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
int i=0;
while(i<5)
{
cout<<i+1<<"\t";
for(int j=0;j<3;j++)
{
cout<<n[i][j]<<"\t";
}
i++;
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2015-1-31 12:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[5][3]={{90,85,85},{70,75,80},{70,80,96},{100,61,43},{98,32,47}};
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<<n[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2015-1-31 12:02
#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;
}
複製代碼
作者:
梁和雋
時間:
2015-2-7 10:41
#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;
}
複製代碼
作者:
李大全
時間:
2015-2-7 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string n[5][2]={{"1","0965-419349"},{"2","0954-545543"},{"3","0932-734829"},{"4","110"},{"5","0965-408949"}};
cout<<"name\t電話"<<endl;
cout<<"===================================="<<endl;
for(int i=0; i<5; i++)
{
for(int j=0; j<2; j++)
{
cout<<n[i][j]<<" "<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2