我的第一个C++程序
#include <fstream>这是我写的第一个程序,很简单,但我不明白为什么从文件读不了数据,然后传送的文件out.dat呢?我是菜鸟~~~
int main()
{
using namespace std;
ifstream in_stream;
ofstream out_stream;
in_stream.open("D:\我的文档\桌面\in.dat");
out_stream.open("D:\我的文档\桌面\out.dat");
int first,second,third;
in_stream>>first>>second>>third;
out_stream<<"the sum of the first 3\n"
<<"numbers in in.dat\n"
<<"is"<<(first+second+third)
<<endl;
in_stream.close();
out_stream.close();
return 0;
}
我in.dat文件里的数字是
1
2
3