关于C++输入输出流?

#include<fstream.h>#include<iostream.h>#include<stdlib.h>voidmain(){ifstreaminfile;of... #include <fstream.h>
#include <iostream.h>
#include <stdlib.h>
void main()
{
ifstream infile;
ofstream outfile;
outfile.open("my.txt",ios::out);
char un[]="ActL",name[10];
int course=2401,number;
outfile<<un<<endl;
outfile<<course<<endl;
infile.open("my.txt",ios::in);
if(!infile)
{
cerr<<"can't open my.txt"<<endl;
exit(1);
}
char c;
infile>>name>>c>>number;
outfile<<"name:"<<name<<endl;
outfile<<"number:"<<number<<endl;
}

输出结果:
ActL
2401
name:ActL
number:401

我想知道我没给name,number赋值啊 ,怎么回事啊,还有2401怎么变成401了?刚学习流,希望大大门能够解答,不胜感激。
展开
 我来答
百度网友f160a72
2010-08-08 · TA获得超过363个赞
知道小有建树答主
回答量:461
采纳率:0%
帮助的人:402万
展开全部
ifstream //读入文件
ofstream //写出

outfile<<un<<endl;
outfile<<course<<endl; //向my.txt 写出uu course
ActL
2401

infile>>name>>c>>number;
//从my.txt 读入 ActL /2401
name="Actl" c='2' number=401 明白了吧 2 被你当做 一个字符 赋值给c了

然后
outfile<<"name:"<<name<<endl;
outfile<<"number:"<<number<<endl; //写出
百度网友205a87d
2010-08-08 · 超过38用户采纳过TA的回答
知道小有建树答主
回答量:161
采纳率:0%
帮助的人:141万
展开全部
你通过
ifstream infile;
ofstream outfile;
指明了输入和输出为my.txt文件
又通过infile>>name>>c>>number;改变了name,c,number的值
这个值存在于my.txt文件中
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式