標題:
044 二維陣列九九乘法表
[打印本頁]
作者:
游東祥
時間:
2014-4-19 15:07
標題:
044 二維陣列九九乘法表
二維陣列九九乘法表
作者:
李允軒
時間:
2014-4-20 18:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "九九乘法表" << endl;
cout << "==========" << endl;
int a = 9;
int b = 9;
int z[a][b];
for (int i = 0; i < a; i++)
for (int j = 0; j < b; j++)
z[i][j] = (i+1) * (j+1);
for (int i = 0; i < a; i++){
for ( int j = 0; j < b; j++)
cout << z[i][j] << "\t";
cout << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-4-26 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "九九乘法表" << endl;
cout << "==========" << endl;
int z[9][9];
for(int x = 0; x < 9; x++)
{
for(int y = 0; y < 9; y++)
{
z[x][y] = (x+1) * (y+1);
}
}
for (int x = 0; x < 9; x++)
{
for ( int y = 0; y < 9; y++)
{
cout << z[x][y] <<"\t";
}
cout << endl;
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2