標題:
巢狀迴圈 (一) - 九九乘法表1
[打印本頁]
作者:
歐柏罕
時間:
2017-11-6 20:20
標題:
巢狀迴圈 (一) - 九九乘法表1
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//巢狀迴圈
for(int i=1;i<=9;i++)//變數命名 i j k
{
for(int j=1;j<=9;j++)
{
cout << i << "*" << j << "=" << i*j << "\t"; // \t 代表 Tab
}
cout << endl; //換行
}
system("pause");
return 0;
}
複製代碼
作者:
盧佑芯
時間:
2017-11-6 20:22
本帖最後由 盧佑芯 於 2017-11-6 20:25 編輯
#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<<j*i<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾堂桂
時間:
2017-11-6 20: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;
}
複製代碼
作者:
沈子晏
時間:
2017-11-6 20:24
#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;
}
複製代碼
作者:
彭煥宇
時間:
2017-11-6 20:24
#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;
}
複製代碼
作者:
洪翊展
時間:
2017-11-6 20:25
本帖最後由 洪翊展 於 2017-11-6 20: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"<<endl;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪翊庭
時間:
2017-11-6 20:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=9;i++)
{
for(int j=2;j<=9;j++)
{
cout<<i<<"*"<<j<<"2"<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪啓銓
時間:
2017-11-6 20:29
#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;
}
複製代碼
作者:
李治毅
時間:
2017-11-10 20:57
#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;
}
複製代碼
作者:
李治毅
時間:
2017-12-19 19:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1,j=1;
while(i<=9)
{
j=1;
while(j<=9)
{
cout << i << "*" << j << "=" << i*j << "\t"; // \t 代表 Tab
j++ ;
}
i++;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2