欢迎来到天天文库
浏览记录
ID:62259592
大小:531.00 KB
页数:49页
时间:2021-04-24
《最新C++2.7-输入输出语句课件ppt.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、C++2.7-输入输出语句标准输入输出流流是同C++语言工具捆绑的资源库。流iostream主管数据类型的识别工作和沟通操作系统,全权负责将流中的数据送到对应的设备上;正确使用流iostream推荐使用如下形式:#includeusingnamespacestd;类似于+-*/,<<也是一个操作符<<有两个操作数:左操作数是一个流类的对象,我们常用cout;右操作数是任意的常量或变量;利用操作<<实现将指定数据输出到其左操作数对应的设备上。如:cout<<23;cout<<“helloworld!”;inta=10;cout<2、23<<“hello”<3、ific);cout<<12.45<4、tific<<123456.678<5、etw(4)<<27<#includeusingnamespacestd;voidmain(){for(inti=1;i<=9;i++){for(intj=1;j<=9;j++){cout<6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
2、23<<“hello”<3、ific);cout<<12.45<4、tific<<123456.678<5、etw(4)<<27<#includeusingnamespacestd;voidmain(){for(inti=1;i<=9;i++){for(intj=1;j<=9;j++){cout<6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
3、ific);cout<<12.45<4、tific<<123456.678<5、etw(4)<<27<#includeusingnamespacestd;voidmain(){for(inti=1;i<=9;i++){for(intj=1;j<=9;j++){cout<6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
4、tific<<123456.678<5、etw(4)<<27<#includeusingnamespacestd;voidmain(){for(inti=1;i<=9;i++){for(intj=1;j<=9;j++){cout<6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
5、etw(4)<<27<#includeusingnamespacestd;voidmain(){for(inti=1;i<=9;i++){for(intj=1;j<=9;j++){cout<6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
6、"*"<usingnamespacestd;voidmain(){ cout.fill('*'); cout.width(6);
7、 cout.fill('#'); cout<<123<>操作符将从键盘取得数据送到内存中;因此在C++中,这种输入操作称为“提取”或“得到”,>>常称为“提取
此文档下载收益归作者所有