正在加载图片...
C++语言程序设计 清华大学郑莉 例112使用setw指定宽度 # lude <iostream 输出流 #include < iomanip> using name space std void maino double values[]={1.23,35.36,653.7,4358.24}; char *names []=I Zoot ,Jimmy","Al",Stan"] for (int i=0; i<4: 1++) cout<<setw( 6)<<names [il 输出结果: <<setw(10)<<values lil Zoot 1.23 LEndl Jimmy 35.36 Al 653.7 Stan4358.24C++语言程序设计 清华大学 郑莉 10 例11-2使用setw指定宽度 #include <iostream> #include <iomanip> using namespace std; void main() { double values[]={1.23,35.36,653.7,4358.24}; char *names[]={"Zoot","Jimmy","Al","Stan"}; for(int i=0;i<4;i++) cout<<setw(6)<<names[i] <<setw(10)<<values[i] <<endl; } 输 出 流 输出结果: Zoot 1.23 Jimmy 35.36 Al 653.7 Stan 4358.24
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有