第9周项目3-输出星号图(c)

时间:2022-08-22 08:55:26
/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:Annpion.cpp
*作者:王耀鹏
*完成日期:2014年10月23日
*版本号:v1.0
*
*问题描述:输出星号图
*输入描述:不输入
*程序输出:输出星号图
*/
#include<iostream>
using namespace std;
int main()
{
int i,t,s,h;
for (i=1; i<=6; i++)
{
for(s=1;s<=(i-1);s++)
{
cout<<" ";
}
for(t=1;t<=(13-2*i);t++)
{
cout<<"*";
}
cout<<endl;
}
return 0;
}

运行结果:

第9周项目3-输出星号图(c)