读取7个数(1-50)的整数值,每读取一个值,程序打印出该值个数的*。
int a;
cin >>a;
cout<<setfill('*') //空添 *
<<setw(a)<<endl; //设置 a个位置
刚丛一个程序上描下来的,不知道我的思路对不!