返回列表 發帖

小星星5

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

利用巢狀迴圈, 將符號*整齊排列成如下之三角形:
  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. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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. }
複製代碼

TOP

  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# 陳品肇

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表