標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2019-8-30 20: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;
}
複製代碼
作者:
楊佑諺
時間:
2019-8-30 20:28
#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=j+1)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-8-30 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int q=1; q<=9; q++)
{
cout<<i<<"*"<<q<<"="<<i*q<<"\t";
}
cout<<""<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李宇澤
時間:
2019-8-30 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1; a<=9; i++)
{
for(int b=1; b<=9; j++)
{
cout<<a<<"*"<<b<<"="<<a*b<<" ";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-8-30 20:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int a=1; a<=9; a++)
{
cout<<i<<"*"<<a<<"="<<i*a<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施褕均
時間:
2019-8-30 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"<<endl;
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-8-30 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;
}
複製代碼
作者:
董宸佑
時間:
2019-8-30 20:30
#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;
}
複製代碼
作者:
陳宥穎
時間:
2019-8-30 20:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int o=1; o<=9; o++)
{
for(int b=1; b<=9; b++)
{
cout<<o<<"*"<<b<<"="<<o*b<<"\t";;
}
}
system("pause");
return 0;
}
複製代碼
作者:
余有晉
時間:
2019-8-30 20:30
#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;
}
複製代碼
作者:
蔡忻霓
時間:
2019-8-30 20:31
#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;
複製代碼
作者:
黃宥華
時間:
2019-8-30 20: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";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-10-25 19:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=1,e=1;
while(a<=9)
{
a++;
while(e<=9)
{
e++;
cout<<a<<"*"<<e<<"="<<a*e<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2