標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
王瑞喻
時間:
2020-7-31 13:44
標題:
巢狀迴圈 - 九九乘法表 (一)
#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-7-31 13:50
本帖最後由 陳柏恩 於 2020-7-31 14: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<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
鄭軒濬
時間:
2020-7-31 14: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;
}
複製代碼
作者:
邱玟瑜
時間:
2020-7-31 14: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;
}
複製代碼
作者:
周秉融
時間:
2020-7-31 14:06
#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-7-31 14:06
#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=j+1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
樂柏謙
時間:
2020-7-31 14:06
#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-7-31 14:09
#include <iostream>
#include <iomanip>
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-7-31 14: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;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2