简单的C++文件输入流问题
用ifstream类定义的对象file;inttemp;怎样判断file>>temp;是否正确的读入了整型?...
用ifstream类定义的对象file;int temp;怎样判断file>>temp;是否正确的读入了整型?
展开
展开全部
#include<iostream>
#include<fstream>//定义文件流
using namespace std;
int main()
{
ifstream cin("test.txt");//把这行去掉,就能做正常的输入输出,很方便的建议使用
int temp;
/*这个是读入多个数,输出多个数
while( cin>>temp)
cout<<temp<<endl;
*/
//这个只能读入一个,输出一个
cin>>temp;
cout<<temp<<endl;
return 0;
}
#include<fstream>//定义文件流
using namespace std;
int main()
{
ifstream cin("test.txt");//把这行去掉,就能做正常的输入输出,很方便的建议使用
int temp;
/*这个是读入多个数,输出多个数
while( cin>>temp)
cout<<temp<<endl;
*/
//这个只能读入一个,输出一个
cin>>temp;
cout<<temp<<endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询