標題:
巢狀迴圈 (一) - 九九乘法表1
[打印本頁]
作者:
陳品肇
時間:
2019-4-27 10:03
標題:
巢狀迴圈 (一) - 九九乘法表1
#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"; // \t代表Tab鍵
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
[attach]6334[/attach]
作者:
黃傳耀
時間:
2019-4-27 10:44
本帖最後由 黃傳耀 於 2019-4-27 11:10 編輯
#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;
}
複製代碼
作者:
謝蓮金
時間:
2019-4-27 11:05
#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;
}
複製代碼
作者:
洪藜芸
時間:
2019-4-27 11:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=9;i++)
{
for(int a=1;a<=9;a++)
{
cout<<i<<"*"<<a<<"="<<i*a<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪子涵
時間:
2019-4-27 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j;
for(i=1;i<=9;++i)
{
for(j=1;j<=9;++j)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-4-27 11:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i,j;
for(i=1;i<=9;++i)
{
for(j=1;j<=9;++j)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-4-27 11:11
#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;
}
cout<<""<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-5-4 09: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;
}
複製代碼
作者:
陳宇柏
時間:
2019-6-4 17:17
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2