標題:
巢狀迴圈練習 - 小星星 (二)
[打印本頁]
作者:
tonyh
時間:
2011-10-22 16:38
標題:
巢狀迴圈練習 - 小星星 (二)
本帖最後由 tonyh 於 2011-10-22 17:33 編輯
利用巢狀迴圈, 將符號*整齊排列如下:
*****
****
***
**
*
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-10-22 16:39
本帖最後由 t3742238 於 2011-10-22 17:02 編輯
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<= 6-i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-10-22 16:39
本帖最後由 劉漢文 於 2011-10-22 17:01 編輯
#include<iostream>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=1; j<=i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-10-22 16:41
#include <iostream>
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;
}
複製代碼
作者:
t2364705
時間:
2011-10-22 16:41
#include<iostream>
using namespace std;
int main()
{
for(int i=5;i>=1;i--) //巢狀迴圈
{
for(int j=1;j>=i; j--)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-10-22 17:13
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<= (6-i); j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-10-22 17:15
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=5;i++)
{
for(int j=1;j<= (6-i); j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
}
return 0;
複製代碼
作者:
t2364705
時間:
2011-10-22 17:15
#include<iostream>
using namespace std;
int main()
{
for(int i=1; i<=5;i++) //巢狀迴圈
{
for(int j=1;j<=(6-i) ;j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
t8155745
時間:
2011-10-22 17:16
#include <iostream>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=(6-i); j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許逸瑋
時間:
2011-10-22 17:19
#include <iostream>
using namespace std;
int main()
{
for(int i=1; i<=5; i++)
{
for(int j=1; j<=6-i; j++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2