返回列表 發帖

[隨堂測驗] 小星星 4

利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:

  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. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 馬琮翰 於 2021-2-2 17:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=4; i++)
  7.     {
  8.         for(int j=i; j>=2; j--)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int h=1; h<=10; h++)
  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<=4;i++)
  7.     {
  8.         for(int j=1;j<=i-1;j++)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int k=1;k<=10;k++)
  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<=4;i++)
  7.     {
  8.         for(int j=1;j<i;j++)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int k=1;k<=10;k++)
  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<=4;i++)
  7.     {
  8.         for(int j=0;j<=i-2;j++)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int s=1;s<=10;s++)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18. system("pause");
  19. return 0;   
  20. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.         for(int c=1;c<=4;c++)
  6.     {
  7.         for(int space=2;space<=c;space++)
  8.         {
  9.             cout<<" ";
  10.         }
  11.         for(int star=1;star<=10;star++)
  12.         {
  13.                 cout<<"*";
  14.         }
  15.         cout<<endl;
  16.     }
  17. }
複製代碼

TOP

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

TOP

本帖最後由 王廷悠 於 2022-7-7 16:45 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1; i<=4; i++)
  7.     {
  8.         for(int j=1; j<=i-1; j++)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int k=1; k<=10; k++)
  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<=4; i++)
  7.     {
  8.         for(int j=i; j<=3; j++)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int p=10; p>=1; p--)
  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<=4;i++)
  7.     {
  8.           for(int j=1;j<=i-1;j++)
  9.           {
  10.               cout<<" ";
  11.           }
  12.           for(int k=1;k<=10;k++)
  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<=4;i++)
  7.     {
  8.           for(int s=1;s<=i-1;s++)
  9.           {
  10.               cout<<" ";
  11.           }
  12.           for(int h=1;h<=10;h++)
  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.         for(int i=1;i<=4;i+=1)
  6.     {
  7.         for(int j=2;j<=i;j+=1)
  8.         {
  9.             cout<<" ";     
  10.         }
  11.         for(int k=1;k<=10;k+=1)
  12.         {
  13.             cout<<"*";   
  14.         }
  15.         cout<<endl;
  16.     }
  17.         system("pause");
  18.         return 0;
  19. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.     for(int i=1;i<=4;i++)
  5.     {
  6.         for(int j=i-1;j>0;j--)
  7.             cout<<' ';
  8.         for(int k=1;k<=10;k++)
  9.             cout<<'*';
  10.         cout<<'\n';
  11.     }
  12.     return 0;
  13. }
複製代碼

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表