標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
鄭繼威
時間:
2022-10-1 01:37
標題:
巢狀迴圈 - 九九乘法表 (一)
#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;
}
複製代碼
作者:
盧禹丞
時間:
2022-10-1 09:43
#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;
}
複製代碼
作者:
楊芊琦
時間:
2022-10-1 11:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int x=1;x<=9;x+=1)
{
for(int y=1;y<=9;y+=1)
{
cout<<x<<"*"<<y<<"="<<x*y<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2022-10-1 13:26
#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;
}
複製代碼
作者:
林雋喆
時間:
2022-10-1 13:35
#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;
}
複製代碼
作者:
宜儒
時間:
2022-10-1 13: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;
}
複製代碼
作者:
鄭繼威
時間:
2022-10-1 13:39
本帖最後由 鄭繼威 於 2022-10-1 14:16 編輯
以上5位同學OK
回復
3#
楊芊琦
輸出格式不符合題目要求
作者:
羅紹齊
時間:
2022-10-1 13:46
#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;
}
複製代碼
作者:
鍾瑄羽
時間:
2022-10-1 13:49
#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;
}
複製代碼
作者:
陳宥霖
時間:
2022-10-1 13:50
本帖最後由 陳宥霖 於 2022-10-1 13:51 編輯
#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;
}
複製代碼
作者:
翁川祐
時間:
2022-10-1 13:53
#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;
}
複製代碼
作者:
徐啟祐
時間:
2022-10-1 13:59
#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;
}
複製代碼
作者:
陳泓亦
時間:
2022-10-1 14: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"; // \t 代表 Tab
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
葉佳和
時間:
2022-10-1 14: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";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
羅暐傑
時間:
2022-10-1 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
for(int i=1; i<=9; i++){
for(int x=1; x<=9; x++){
cout<<i<<"*"<<x<<"="<<i*x<<"\t";
}cout<<endl;}
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-10-1 14: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";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃品禎
時間:
2022-10-1 14:21
本帖最後由 黃品禎 於 2022-10-1 14: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;
}
複製代碼
作者:
吳丞治
時間:
2022-10-1 14:49
#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-1-3 18:07
#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;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2