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