2016.4.15上机内容教案.ppt

  1. 1、本文档共83页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
2016.4.15 2.2.3 简单的i/o格式控制 C++I/o流提供了一些操纵符,可以直接嵌入到输入输出语句中来实现输入输出格式控制。 manip是manipulator(操纵器)的缩写 manipulate 操作 2.2.3 简单的i/o格式控制 使用操纵算子,则可以在插入和提取运算符的表达式中控制格式化输入和输出。 在程序中使用操纵算字必须嵌入头文件iomanip (书上写错) #includeiomanip.h Withdraw space 一般,预定义的控制符有以下几种: dec 十进制的输入输出? hex 十六进制的输入输出? oct 八进制的输入输出? ws 提取空白字符? ends 输出一个空字符? endl 输出一个换行字符,同时刷新流? setprecision(int) 设置输出浮点数的精度数 setw(int) 设置域宽? binary 二进制的 octal 八进制的 hexadecimal 十六进制的 decimal 十进制的 插入运算符与预先定义的操纵符一起工作,用来控制输出格式。 dec、oct和hex操纵符设置输入和输出的缺省进制,例如,若将hex操纵符插入到输出流中,则以十六进制格式输出。 #include iostream using namespace std; void main() { couthex128endl; coutoct128endl; coutdec128endl; } #include iostream using namespace std; //#includeiomanip.h void main() { couthex128endl; coutoct128endl; coutdec128endl; } #includeiostream using namespace std; void main() { int x,y,z; cinhexxoctydecz; coutx=xendl; couty=yendl; coutz=zendl; } /* #include iostream using namespace std; #include bitset void main( ) { int a=128 ; cout aendl; cout bitset8(a) endl; } #include iostream using namespace std; #include bitset void main( ) { int a=128 ; cout aendl; cout bitset16(a) endl; } #include iostream using namespace std; #include bitset void main( ) { short int a=32769 ; cout aendl; cout bitset16(a) endl; } */ #include iostream #include iomanip using namespace std; void main() { int i; for( i=1;i=9;i++) coutsetw(3)i; coutendl; } 例如:要输出浮点数3.1415并换行,设置域宽为5个字符,小数点后保留两位有效数字,输出语句如下: #includeiostream using namespace std; #includeiomanip void main() { coutsetw(5)setprecision(3) 3.1415endl; coutsetw(10)setprecision(5) 3.1415926endl; coutsetw(10)setprecision(5) 314.15926endl; } 实际上指的是几位有效数字 #includeiostream using namespace std; #includeiomanip void main() { coutsetiosflags(ios_base::fixed); coutsetw(10)setprecision(3) 3.1415endl; coutsetw(10)setprecision(5) 3.1

您可能关注的文档

文档评论(0)

希望之星 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档