標題:
022 迴圈顯示九九乘法表
[打印本頁]
作者:
游東祥
時間:
2014-3-15 15:15
標題:
022 迴圈顯示九九乘法表
[attach]855[/attach]
作者:
李允軒
時間:
2014-3-15 18:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int x = 1; x <= 9; x = x + 1)
{
for (int y = 1; y <= 9; y = y++)
{
cout << x << "*" << y << "=" << x*y << endl;
}
}
system ("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-3-16 10:17
本帖最後由 林宇翔 於 2014-3-29 13:24 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "九九乘法表" << endl;
cout << "==========" << endl;
for (int x = 1; x <= 9; x = x + 1)
{
for (int y = 1; y <= 9; y = y++)
{
cout << x << "*" << y << "=" << x*y << " " ;
}
cout << endl;
}
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2