Board logo

標題: 小星星 5 [打印本頁]

作者: 張翼安    時間: 2015-11-21 01:07     標題: 小星星 5

利用巢狀回圈, 將符號*整齊排列成如下之三角形:
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(_____________)
  7.     {
  8.         for(_____________)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(_____________)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 吳承勳    時間: 2015-11-21 11:27

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i = 0; i < 5; i++)
  7.     {
  8.           for(int s = 0; s < 4 - i; s++)
  9.           {
  10.               cout<<" ";
  11.           }
  12.           for(int j = 0; j < i * 2 + 1; j++)
  13.           {
  14.               cout<<"*";
  15.           }
  16.     cout<<endl;      
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 蔡庭豪    時間: 2015-11-21 11:28

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   for(int x=0;x<=4;x++)
  7.   {
  8.        for(int y=0;y<4-x;y++)
  9.        {
  10.             cout<<" ";   
  11.        }
  12.        for(int z=0;z<2*x+1;z++)
  13.        {
  14.             cout<<"*";   
  15.        }
  16.        cout<<endl;         
  17.   }      
  18.   system ("pause");
  19.   return 0;   
  20. }
複製代碼

作者: 蔡季樺    時間: 2015-11-21 11:33

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=0;i<5;i++)
  7.     {
  8.         for(int k=0;k<(4-i);k++)
  9.         {
  10.             cout<<" ";
  11.         }
  12.         for(int j=0;j<(i*2+1);j++)
  13.         {
  14.             cout<<"*";
  15.         }
  16.         cout<<endl;      
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2