標題:
巢狀迴圈 - 九九乘法表 (一)
[打印本頁]
作者:
許婷芳
時間:
2019-8-30 10:07
標題:
巢狀迴圈 - 九九乘法表 (一)
本帖最後由 許婷芳 於 2019-8-30 19:43 編輯
[attach]7013[/attach]
作者:
林祐霆
時間:
2019-8-30 20:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=9; i++)
{
for(int s=1; s<=9; s++)
{
cout<<i<<"*"<<s<<"="<<i*s<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇韋誠
時間:
2019-8-30 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=9;a++)
{
for(int b=1;b<=9;b++)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\t";
}
}
system("pause");
return 0;
}
作者:
謝以恩
時間:
2019-8-30 20:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1;a<=9;a++)
{
for(int b=1;b<=9;b++)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪承廷
時間:
2019-8-30 20:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1; a<=9; a++)
{
for(int b=1; b<=9; b++)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\t";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇詠翔
時間:
2019-8-30 20:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int a=1; a<=9; a++)
{
for(int b=1; b<=9; b++)
{
cout<<a<<"*"<<b<<"="<<a*b<<"\*";
}
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2