標題:
巢狀迴圈 (一) - 九九乘法表1
[打印本頁]
作者:
tonyh
時間:
2015-5-1 20:21
標題:
巢狀迴圈 (一) - 九九乘法表1
本帖最後由 tonyh 於 2015-5-1 20:49 編輯
[attach]1222[/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;
}
複製代碼
作者:
陳思惟
時間:
2015-5-1 20:38
本帖最後由 陳思惟 於 2015-5-1 20:41 編輯
#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;
}
複製代碼
作者:
沈子耕
時間:
2015-5-1 20:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1 ; i<=9 ; i=i+1)
{
for(int j=1 ; j<=9 ;j++)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-5-1 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int x=1; x<=9; x++)
{
for(int y=1; y<=9; y++)
{
cout<<x<<"*"<<y<<"="<<x*y<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-5-1 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int d=1; d<=9; d++)
{
cout<<i<<"*"<<d<<"="<<i*d<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2