蛋蛋图3

#include <iostream>
using namespace std;
int main( )
{
 int i,j;
 for(i=1;i<=6;++i){
  for(j=1;j<=6-i;++j)
   cout<<" ";
  for(j=1;j<=i;++j)
   cout<<"o";
  cout<<endl;
 }
 return 0;
}
  输出结果:

蛋蛋图3_第1张图片

心得体会:算法真的让人头疼

你可能感兴趣的:(算法,include)