Board logo

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

作者: 陳品肇    時間: 2018-11-23 22:37     標題: 小星星5

本帖最後由 陳品肇 於 2018-11-24 14:11 編輯

利用巢狀迴圈, 將符號*整齊排列成如下之三角形:
[attach]5340[/attach]
  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. }
複製代碼

作者: 趙一鳴    時間: 2018-11-24 13:55

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

作者: 章幼莛    時間: 2018-11-24 13:58

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=5;i++)
  7.     {
  8.             for(int j=1;j<=5-i;j++)
  9.             {
  10.                     cout<<" ";
  11.             }
  12.             for(int j=1;j<=2*i-1;j++)
  13.             {
  14.                     cout<<"*";
  15.             }
  16.             cout<<endl;
  17.     }
  18.    
  19.     system ("pause");
  20.     return 0;
  21. }
複製代碼
回復 1# 陳品肇
作者: 洪寬瀧    時間: 2018-11-24 14:02

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

作者: 王瑞喻    時間: 2018-11-24 14:11

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

作者: 吳孟修    時間: 2018-11-24 14:21

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

作者: 吳孟書    時間: 2018-11-24 14:21

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

作者: 周孫印    時間: 2018-12-1 12:55

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





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