返回列表 發帖

小星星6

  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.     int i, j, a;
  6.     for(i=4; i>=0; i-=1)
  7.     {
  8.         a=2*i+1;
  9.         for(j=1; j<=(9-a+1)/2; j+=1){
  10.             cout<<" ";   
  11.         }
  12.         for(j=1; j<=a; j+=1)
  13.         {
  14.             
  15.             cout<<"*";
  16.         }
  17.         for(j=1; j<=(9-a+1)/2; j+=1){
  18.             cout<<" ";   
  19.         }
  20.         cout<<"\n";            
  21.     }
  22.    
  23.     system("pause");
  24.     return 0;
  25. }
複製代碼

TOP

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

  30. }
複製代碼

TOP

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

TOP

  1. #include<cstdlib>
  2. using namespace std;
  3. int main(){
  4.     int i, j, a;
  5.     for(i=4; i>=0; i-=1)
  6.     {
  7.         a=2*i+1;
  8.         for(j=1; j<=(9-a+1)/2; j+=1){
  9.             cout<<" ";   
  10.         }
  11.         
  12.         for(j=1; j<=a; j+=1)
  13.         {
  14.             
  15.             cout<<"*";
  16.         }
  17.         
  18.         
  19.         for(j=1; j<=(9-a+1)/2; j+=1){
  20.             cout<<" ";   
  21.         }
  22.         cout<<"\n";            
  23.     }
  24.    
  25.    
  26.     system("pause");
  27.    return 0;
  28.    

  29. }
複製代碼

TOP

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

TOP

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

TOP

返回列表