/*
*copyrights(c)2014,烟台大学计算机学院
*All rights reserved.
*文件名称:test.cpp
*作者:wangzhengqu
*完成日期2014.10.25
版本号:v1.0
*问题描述:制作图案
*/
#include <iostream>
using namespace std;
int main()
{
int a=1,b;
while (a<=9)
{
for(b=1;b<=a;++b)
cout<<"*";
++a;
cout<<endl;
}
return 0;
}