標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-4-24 17:19
標題:
巢狀迴圈 - 九九乘法表 (一)
#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;
}
複製代碼
作者:
董定宇
時間:
2020-4-25 16:12
#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;
}
複製代碼
作者:
夏子涵
時間:
2020-4-25 16:32
#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;
}
複製代碼
作者:
鐘彥博
時間:
2020-4-25 16:36
#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;
}
複製代碼
作者:
呂尚霖
時間:
2020-4-25 17:04
#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;
}
複製代碼
作者:
謝承志
時間:
2020-4-25 17:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
for(a=1;a<=9;a++)
{
for(b=1;b<=9;b++)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林帛毅
時間:
2020-4-25 17:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int j=1; j<=9; j++)
{
for(int i=1; i<=9; i++)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2