gpt4 book ai didi

c++ - 将文件中的信息插入到结构中

转载 作者:行者123 更新时间:2023-11-28 00:04:04 26 4
gpt4 key购买 nike

我想从一个文件中提取数据并将它们存储到 myWorld 中,但是我的 for 循环不起作用,程序一旦进入 for 循环就不会循环一次。我不确定是什么问题。到目前为止,这是我的代码。

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
using namespace std;

struct Country
{
double pop1950;
double pop1970;
double pop1990;
double pop2010;
double pop2015;
string name;
};

const int MAXCOUNTRIES = 300;

struct World
{
int numCountries;
Country countries[MAXCOUNTRIES];
} myWorld;

void printPop ();

int main ()
{
printPop();
return 0;
}

void printPop()
{
ifstream inFile("population.csv");

if (!inFile.fail())
{
cout << "File has opened successfully.";
}

if (inFile.fail())
{
cout << "File has failed to open.";
exit(1);
}

for (int i = 0; i < MAXCOUNTRIES; i++)
{
inFile >> myWorld.countries[i].pop1950 >> myWorld.countries[i].pop1970 >> myWorld.countries[i].pop1990
>> myWorld.countries[i].pop2010 >> myWorld.countries[i].pop2015;
getline (cin, myWorld.countries[i].name);
cout << "loop is running" << endl;
}

inFile.close();
}

最佳答案

我认为你的循环正在运行,它只是在这里等待用户输入:

getline (cin, myWorld.countries[i].name);

关于c++ - 将文件中的信息插入到结构中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36756056/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com