正在加载图片...
第10章输入/输出流 例10.1使用sew操纵元控制域宽 i include <iostream. h> if include <iomanip. h> void main( cout≤<123<≤end; cout<< setw(5)<<4.5<< 6.7 <<endl; 域宽仅适用于下一个数据; 程序运行结果为 实际数据比设置的域宽小,将 123 右对齐,左补空格 4.56.7例10.1 使用setw操纵元控制域宽 # include <iostream.h> # include <iomanip.h> void main( ) { cout << 123 << endl; cout << setw(5) << 4.5 << 6.7 << endl; } 程序运行结果为: 123 4.56.7 第10章 输入/输出流 域宽仅适用于下一个数据; 实际数据比设置的域宽小,将 右对齐,左补空格
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有