私は初心者のC++プログラマーです。以前はVisual Studioを使用することに慣れていましたが、今はxcodeを使用しています。 xcodeでは、ファイルからデータを読み取ることができません(したがって、出力も取得できません)。ファイルからデータを読み取るためにxcodeでどの設定を変更する必要がありますか(ファイルはプロジェクトと同じフォルダにあります)正しく?xcodeのファイルからデータを読み取ることができません
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
//in thefile.txt i only have a string "hello"
int main() {
string text; //since i only have a string in the file. So this is a variable representation for it
ifstream myfile;
myfile.open("thefile.txt");
myfile >> text; //extract the word from the file
cout << "The following is the data in the file: " << text <<endl; //trying to print The following is the data in the file: hello
return 0;
}
//Output is "The following is the data in the file: "
ありがとうございます。それは助けになった。私はxcode(product> scheme> scheme> option(inside run))を使ってxcodeを実行し、コードがあるディレクトリにディレクトリを変更する方法も見つけました。 –