xcode c++文件不能读取 10
比如:#include<string>#include<fstream>#include<iostream>usingnamespacestd;intmain(){str...
比如:
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int main () {
string s;
ifstream a("1.txt");
ofstream b("2.txt",ios::app);
if (a.is_open() && b.is_open()) {
while(getline(a,s)) {
b << s << endl;
cout << s;
}
b.close(); a.close();
}
else cerr << "Unable to open the file(s)\n";
}
我将1.txt放在了装.cpp的文件夹内,但是还是报错,无法找到,请问xcode是怎么处理file问题的呀?怎么才能让这个程序不报错?
忘了说,我一直是mac编程 展开
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int main () {
string s;
ifstream a("1.txt");
ofstream b("2.txt",ios::app);
if (a.is_open() && b.is_open()) {
while(getline(a,s)) {
b << s << endl;
cout << s;
}
b.close(); a.close();
}
else cerr << "Unable to open the file(s)\n";
}
我将1.txt放在了装.cpp的文件夹内,但是还是报错,无法找到,请问xcode是怎么处理file问题的呀?怎么才能让这个程序不报错?
忘了说,我一直是mac编程 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询