VS2010下的第一个C++程序
时间:2011-03-15 来源:齐威王
#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;
}
结果如下图
相关阅读 更多 +