標題:
陣列 (五) - 成績表 (一)
[打印本頁]
作者:
周政輝
時間:
2018-2-24 14:49
標題:
陣列 (五) - 成績表 (一)
利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:
[attach]3417[/attach]
作者:
戴嘉禾
時間:
2018-2-24 14:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num[5][4]={{1,87,87,87},{2,87,87,87},{3,87,87,87},{4,87,87,87},{5,87,87,87}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<5;i++)
{
for(int j=0;j<4;j++)
{
cout<<" "<<num[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2018-2-24 14:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num [5][4]={{1,90,80,75},{2,50,60,80},{3,10,40,89},{4,50,75,45},{5,50,75,45}};
cout<<"座號\t國文\t數學\t英文\t"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<5;i++)
{
for(int j=0;j<4;j++)
{
cout<<num[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2018-2-24 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num [5][4]={{1,39,0,77},{2,50,7,0},{3,10,91,19},{4,45,55,69},{5,88,0,1}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<5;i++)
{
for(int j=0; j<4;j++)
{
cout<<num[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2018-2-24 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num[5][4]={{1,90,85,85}, {2,70,75,80}, {3,80,95,80}, {4,70,95,75}, {5,80,85,95} };
cout<<"座號\t國文\t英文\t數學"<<endl;;
cout<<"============================"<<endl;
for(int i=0;i<5;i++)
{
for(int j=0;j<4;j++)
{
cout<<num[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
顏詢
時間:
2018-2-24 15:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num [5][4]={{1,50,50,50},{2,50,50,50},{3,50,50,50},{4,50,50,50},{5,50,50,50}};
cout<<"座號\t國語\t數學\t英文\t"<<endl;
cout<<"============================="<<endl;
for( int i=0; i<5; i++)
{
for( int j=0; j<4; j++)
{
cout<< num[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2