VS2010下的第一个C++程序
#include<iostream>
using namespace std;
int main()
{
int i=0,j=0;
for(j=1;j<=7;j++)
{
if(j<=4)
{
for(i=1;i<=2*j-1;i++)
{
cout<<"*";
}
cout<<endl;
}
else
{
for(i=1;i<=15-2*j;i++)
{
cout<<"*";
}
cout<<endl;
}
}
system("pause");
return 0;
}
结果如下图
路漫漫其修远兮,吾将上下而求索