標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
方浩葦
時間:
2024-6-14 11:33
標題:
巢狀迴圈 - 九九乘法表 (一)
#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;
}
複製代碼
作者:
高湘庭
時間:
2024-6-15 14:58
#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;
}
複製代碼
作者:
李偈睿
時間:
2024-6-15 15: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";
}
}
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-6-15 15:14
#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";
}
}
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-15 15:14
#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;
}
複製代碼
作者:
李唯銘
時間:
2024-6-15 15:15
#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;
}
複製代碼
作者:
洪榮辰
時間:
2024-6-17 17:00
#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;
}
複製代碼
作者:
林少謙
時間:
2024-6-19 11:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=2;i<=9;i++)
{ for (int j=1;j<=9;j++)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林少謙
時間:
2024-6-19 12:02
本帖最後由 林少謙 於 2024-6-19 12:23 編輯
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2