標題:
巢狀迴圈 (一) - 九九乘法表1
[打印本頁]
作者:
歐柏罕
時間:
2017-11-4 15:02
標題:
巢狀迴圈 (一) - 九九乘法表1
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=9;i++) //行數
{
for(int j=1;j<=9;j++) //星星個數 條件:行數(1) 星星個數 (1) => 2
{
cout << i << "*" << j << "=" << i*j <<"\t"; //印出星星
} // "\t" => TAB
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2017-11-4 15:03
#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-4 15:04
#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<<" ";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭楀諺
時間:
2017-11-4 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i =0;
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-4 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=9;i++) //行數
{
for(int j=1;j<=9;j++) //星星個數 條件:行數(1) 星星個數 (1) => 2
{
cout << i << "*" << j << "=" << i*j <<"\t"; //印出星星
} // "\t" => TAB
cout << endl;
}
system("pause");
return 0;
}
複製代碼
複製代碼
作者:
吳秉翰
時間:
2017-11-4 15: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";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2