標題:
while 迴圈 (四)
[打印本頁]
作者:
周政輝
時間:
2017-5-20 09:43
標題:
while 迴圈 (四)
利用while製作九九乘法表
作者:
莊旻叡
時間:
2017-5-20 09:43
本帖最後由 莊旻叡 於 2017-5-20 10:08 編輯
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a=1,b=0;
while(a<=9)
{
b=1;
while(b<=9)
{
cout<<a<<"*"<<b<<"="<<a*b<<endl;
b++;
}
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
周政輝
時間:
2017-5-20 10:07
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
cout << i << "*" << j << "=" << i*j << endl;
j++;
}
i++;
}
作者:
高品溫
時間:
2017-5-20 10:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1,b=0;
while(a<=9)
{ b=1;
while(b<=9)
{
cout<<a<<"*"<<b<<"="<<a*b<<endl;
b++;
}
a++;
}
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-5-26 18:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
cout<<i<<"*"<<j<<"="<<i*j<<endl;
j++;
}
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2