標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-1-6 18: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"; // \t 代表 Tab
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
邵凡榛
時間:
2023-1-6 20: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;
}
複製代碼
作者:
張絜晰
時間:
2023-1-6 20:19
#include<cstdlib>
#include<iostream>
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";
}
}
system ("pause");
return 0;
}
複製代碼
作者:
廖秝瑜
時間:
2023-1-6 20: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;
}
複製代碼
作者:
曹祁望
時間:
2023-1-6 20:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int i, j;
for(i=1; i < 10 ; i+=1){
for(j=1; j < 10; j+=1){
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
黃子豪
時間:
2023-1-6 20:21
本帖最後由 黃子豪 於 2023-1-6 20:27 編輯
#include<iostream>
using namespace std;
int main()
{
for(int i=1; i<=9; i+=1){
for(int j=1; j<=9; j+=1){
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
cout<<":)"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡沛倢
時間:
2023-1-6 20:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ for (int j=1;j<=9; j++){
for (int i=1;i<=9; i++){
cout<<j<<"*"<<i<<"="<<j*i<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2023-1-6 20:22
#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;
}
複製代碼
作者:
何權晉
時間:
2023-1-6 20:23
#include<iostream>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int k=1; k<=9; k++)
{
cout<<i<<"*"<<k<<"="<<i*k<<"\t";
}
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
盧玄皓
時間:
2023-1-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;
}
複製代碼
作者:
張桔熙
時間:
2023-1-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;
}
複製代碼
作者:
呂得銓
時間:
2023-1-6 20:28
#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