高度な質問をご覧いただきありがとうございます。とてもシンプルなものかもしれません!
ユーザーがシステムで実行したいファイルを選択できるメニューがあります。
以下のコードは私のメニューオプションが行うことです:
int menuLoop = 1;
int userChoice;
std::string getInput;
while(menuLoop == 1)
{
std::cout << "Menu\n\n"
<< "1. 20 names\n"
<< "2. 100 names\n"
<< "3. 500 names\n"
<< "4. 1000 names\n"
<< "5. 10,000 names\n"
<< "6. 50,000 names\n\n";
std::cin >> userChoice;
std::string getContent;
if(userChoice == 1)
{
std::cout << "\n20 names\n";
std::ifstream openFile("20.txt");
}
else if(userChoice == 2)
{
std::cout << "\n100 names\n";
std::ifstream openFile("1C.txt");
}
else if(userChoice == 3)
{
std::cout << "\n500 names\n";
std::ifstream openFile("5C.txt");
}
else if(userChoice == 4)
{
std::cout << "\n1000 names\n";
std::ifstream openFile("1K.txt");
}
else if(userChoice == 5)
{
std::cout << "\n10,000 names\n";
std::ifstream openFile("10K.txt");
}
else if(userChoice == 6)
{
std::cout << "\n50,000 names\n";
std::ifstream openFile("50K.txt");
}
whileループに続くコードは、選択したファイルにある値を処理しますが、コードは各オプションで同じです。次の行は次のとおりです。
if(openFile.is_open())
私のやり方のせいで、「openFile」は未定義だと言っていて、それは完全に理解していますが、どうすれば回避できるか誰かが知っているのだろうかと思いました。