標題:
九九乘法表2
[打印本頁]
作者:
張翼安
時間:
2015-11-14 10:41
標題:
九九乘法表2
九九乘法表2
使左上角顯示 9*9=81 右下角顯示 1*1=1
作者:
吳承勳
時間:
2015-11-14 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a = 9; a >= 1; a--)
{
for(int b = 9; b >= 1; b--)
{
cout << a << "*" << b << "=" << a*b << "\t";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-11-14 10:51
#include<iostream>
using namespace std;
int main()
{
for(int a = 9; a >= 1; a--)
{
for(int b = 9; b >= 1; b--)
{
cout << a << "*" << b << "=" << a*b << "\t";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-11-14 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a = 9; a >= 1; a--)
{
for(int b = 9; b >= 1; b--)
{
cout << a << "*" << b << "=" << a*b << "\t";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2