码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习(33)

时间:2018-07-01 19:04:42      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:字符   com   技术分享   []   ios   oat   c++学习   png   输出   

 1 //ostream类
 2 //put成员函数的功能是把一个字符插入到输入流中
 3 //write成员函数是从字符串数组中提取若干个字符插入到输出流中
 4 #include<iostream.h>
 5 int main(){
 6     
 7     char ch1[]="i=";
 8     char ch2[]="x=";
 9     
10     int i=100;
11     float x=11.11;
12 
13     cout<<ch1<<i<<endl;
14     cout<<ch2<<x<<endl;
15 
16     char ch3[]="abcdefg";
17     cout.write(ch3,5)<<endl;
18 
19     return 0;
20 }

 

技术分享图片

C++学习(33)

标签:字符   com   技术分享   []   ios   oat   c++学习   png   输出   

原文地址:https://www.cnblogs.com/Tobi/p/9250819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!