標題:
while 迴圈 (四) - 九九乘法表
[打印本頁]
作者:
tonyh
時間:
2014-12-6 10:41
標題:
while 迴圈 (四) - 九九乘法表
本帖最後由 tonyh 於 2014-12-6 11:16 編輯
[attach]1072[/attach]
#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<<"\t";
j++;
}
i++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-12-6 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
while(i<=9)
{
int a=1;
while(a<=9)
{
cout<<i<<"*"<<a<<"="<<i*a<<"\t";
a++;
}
i++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-12-6 11:17
#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<<"\t";
j++;
}
i++;
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-12-6 18:07
#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<<"\t";
j++;
}
i++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-12-13 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1;
while(a<=9)
{
int b=1;
while(b<=9)
{
cout<<a<<"*"<<a<<"="<<a*j<<"\t";
b++;
}
a++;
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2