- 1、本文档共12页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C流操纵算子
11.6 流操纵算子:
C++提供了大量的用于执行格式化输入/输出的流操纵算子。流操纵算子提供了许多功能,如设置域宽、设置精度、设置和清除格式化标志、设置域填充字符、刷新流、在输出流中插入换行符并刷新该流、在输出流中插入空字符、跳过输入流中的空白字符等等。下面几节要介绍这些特征。
11.6.1 整数流的基数:流操纵算子dec、oct、hex和setbase
整数通常被解释为十进制(基数为10)整数。如下方法可改变流中整数的基数:插人流操纵算子hex可设置十六进制基数(基数为16)、插人流操纵算子oct可设置八进制基数(基数为8)、插人流操纵算子dec可恢复十进制基数。
也可以用流操纵算子setbace来改变基数,流操纵算于setbase带有一个整数参数10、8或16。因为流操纵算子setbase是带有参数的,所以也称之为参数化的流操纵算子。使用setbose或其他任何参数化的操纵算子都必须在程序中包含头文件iomanip.h。如果不明确地改变流的基数,流的基数是不变的。图11.16中的程序示范了流操纵算子hex、oct、dec和setbase的用法。
// Fig. 11.16: fig11_16.cpp
// Using hex, oct, dec and setbase stream manipulators.
#include iostream.h
#include iomanip.h
int main()
{
int n;
cout Enter a decimal number: ;
cin n;
cout n in hexadecimal is:
hex n \n
dec n in octal is:
oct n \n
setbase( 10 ) n in decimal is:
n endl;
return 0;
}
输出结果:
Enter a decimal number: 20
20 in hexadecimal is: 14
20 in octal is: 24
20 in decimal is: 20
图 11.16 使用流操纵算子hex、oct、dec和setbase
11.6.2 设置浮点数精度(precision、setprecision)
在C++中可以人为控制浮点数的精度,也就是说可以用流操纵算子setprecision或成员函数percision控制小数点后面的位数。设置了精度以后,该精度对之后所有的输出操作都有效,直到下一次设置精度为止。无参数的成员函数percision返回当前设置的精度。图11.17中的程序用成员函数precision和流操纵算子setprecision打印出了2的平方根表,输出结果的精度从0连续变化到9。
// Fig. 11.17: fig11_17.cpp
// Controlling precision of floating-point values
#include iostream.h
#include iomanip.h
#include math.h
int main()
double root2 = sqrt( 2.0 );
int places;
cout setiosflags(ios::fixed)
Square root of 2 with precisions 0-9.\n
Precision set by the
precision member function: endl;
for ( places = 0; places = 9; places++ ) {
cout.precision( places );
cout root2 \n;
}
cout \nPrecision set by the
setprecision manipulator:\n;
for ( places = 0; places = 9; places++ )
cout setprecision( places ) root2 \n;
return 0;
}
输出结果:
Square root of 2 with pzecisions 0-9.
Precision set by the precision member function:
1
1.4
1.41
1.414
1.4142
1.41421
1.414214
1.4142136
1.41
文档评论(0)