一、输入若干个数,将这些数打印输出为4列若干行的形式,要求每列对齐,如果输入的有小数,则保留小数点后2位。
#include
/* run this program using the console pauser or add your own getch, system(“pause”) or input loop */
using namespace std;
#include
using std::setw;
int main() {
cout.precision(2);
cout.setf(ios::fixed);//保留两位小数
int m=0,n;
cout<<“请输入要输入的个数:”;
cin>>n;
double a[10]={};
for(int i=0;i<n;i++){
cin>>a[i];
}
// int n=sizeof(a)/sizeof(int);
for(int j=0;j<n;j++){
cout<<setw(10)<<a[j];
m++;
if(m%4==0){
cout<<“\n”;
}
}
return 0;
}
二、输入图形的行数,利用循环打印输出以下形式的图形(以下图形是以输入5为例)
*
**
**
*
#include
/* run thi