標題:
陣列 (六) - 成績表 (一)
[打印本頁]
作者:
tonyh
時間:
2014-1-18 16:56
標題:
陣列 (六) - 成績表 (一)
本帖最後由 tonyh 於 2014-1-18 17:23 編輯
利用二維陣列, 試做一個包含五位同學, 各三組分數的成績表格.
表格的形式如下:
[attach]808[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float 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<=4; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<=2; j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2014-1-18 17:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score[5][3]={{85,80,75},
{90,85,88},
{95,97,98},
{75,85,77},
{84,75,70}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"=============================="<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<=2;j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-1-18 17:15
#include<iostream>
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score[5][3]={{96,92,91},
{94,98,92},
{97,85,89},
{97,95,91},
{85,94,97}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<=2;j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-1-18 17:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[5][3]={{ 90 , 95 , 80 },
{ 80 , 70 , 90 },
{ 90 , 85 , 90 },
{ 95 , 95 , 80 },
{ 80 , 90 , 90 }};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<=2;j++)
{
cout<<a[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2014-1-18 17:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a[5][3]={{100,100,100},
{100,100,100},
{100,100,100},
{100,100,100},
{100,100,100}};
cout<<"Number \tChinese\tEnglish\tMath\t"<<endl;
cout<<"-------------------------------------------------------"<<endl;
for(int i=0; i<=4; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<=2 ;j++)
{
cout<<a[i][j]<<"\t";
}
cout<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-1-18 17:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score [5][3]={{90,95,85},
{89,95,92},
{89,95,92},
{89,95,92},
{89,95,92}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<=2;j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-1-24 18:56
本帖最後由 劉得旗 於 2014-1-24 19:40 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[5][3]= {{ 93 , 85 , 88 },
{ 81 , 74 , 97 },
{ 80 , 85 , 70 },
{ 58 , 97 , 88 },
{ 84 , 99 , 47 }};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"*****************************"<<endl;
for(int i=0;i<=4;i++)
{
cout<<i+1<<"\t";
for(int j=0;j<=2;j++)
{
cout<<a[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-1-24 19:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
float score[5][3]={{90,98,89},
{76,83,85},
{91,87,94},
{76,82,78},
{91,86,95}};
cout<<"座號\t國文\t英文\t數學\t"<<endl;
cout<<"============================"<<endl;
for(int i=0; i<=4; i++)
{
cout<<i+1<<"\t";
for(int j=0; j<=2; j++)
{
cout<<score[i][j]<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2