標題:
巢狀迴圈 (五)
[打印本頁]
作者:
tonyh
時間:
2012-9-22 14:44
標題:
巢狀迴圈 (五)
**********
*******
*****
***
*
作者:
黃博鴻
時間:
2012-9-22 14:44
#include<iostream>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
for(int j=1; j<=5-i; j++)
{
cout<<" ";
}
for(int k=1; k<=i*2-1; k++)
{
cout<<"*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2