返回列表 發帖

進階-圖形練習

本帖最後由 陳品肇 於 2018-10-20 12:00 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(int i=1;i<=7;i++)
  7.     {
  8.        if(i<4)
  9.        {         
  10.           for(int x=1;x<=i;x++)
  11.           {
  12.             cout<<" ";
  13.           }     
  14.        }else
  15.        {
  16.           for(int x=7;x>=i;x--)
  17.           {
  18.             cout<<" ";
  19.           }   
  20.        }
  21.       
  22.         for(int x=1;x<=10;x++)
  23.         {
  24.              cout<<"*";        
  25.         }
  26.        cout<<endl;
  27.    }
  28.    

  29.    system("pause");
  30.    return 0;
  31. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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 j=1;j<=10;j++)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18.     for(int i=1;i<=4;i++)
  19.     {
  20.         for(int j=4;j>=i;j--)
  21.         {   
  22.              cout<<" ";
  23.         }
  24.         for(int j=1;j<=10;j++)
  25.         {
  26.              cout<<"*";        
  27.         }
  28.         cout<<endl;
  29.     }  
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

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

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 j=1;j<=10;j++)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18.     for(int i=1;i<=4;i++)
  19.     {
  20.         for(int j=4;j>=i;j--)
  21.         {   
  22.              cout<<" ";
  23.         }
  24.         for(int j=1;j<=10;j++)
  25.         {
  26.              cout<<"*";        
  27.         }
  28.         cout<<endl;
  29.     }  
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

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 k=i;k>=1;k--)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(int j=1;j<=10;j++)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18.        for(int p=1;p<=3;p++)
  19.     {        
  20.         for(int s=3;s>=p;s--)
  21.         {
  22.              cout<<" ";
  23.         }
  24.         for(int b=1;b<=10;b++)
  25.         {
  26.              cout<<"*";        
  27.         }
  28.         cout<<endl;
  29.     }
  30.     system("pause");
  31.     return 0;
  32. }
複製代碼

TOP

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

TOP

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

TOP

返回列表