返回列表 發帖

小星星3

利用巢狀迴圈, 試做一個長為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. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽
May

  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=3;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=3;j>=i;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=3;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. using namespace std;


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

TOP

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

TOP

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

TOP

返回列表