【003】输出格式化

//例3.1 各行小数点对齐。

#include <iostream>

#include <iomanip>

using namespace std;

int main( )

 double a=123.456,b=3.14159,c=-3214.67; 

 cout<<setiosflags(ios::fixed)<<setiosflags(ios::right)<<setprecision(2); /*格式化输出*/ //定点方式表示实数 //右对齐 //设置有效数字

 cout<<setw(10)<<a<<endl; //设置域宽(即输出宽度,默认右对齐)

 cout<<setw(10)<<b<<endl;

 cout<<setw(10)<<c<<endl; 

 return 0;

posted @ 2015-10-07 20:15  薛定谔的猪  阅读(130)  评论(0编辑  收藏  举报