-2

因此,我的第一堂 C++ 课程已经 2 周了,但我无可救药地坚持我目前的任务。我必须创建一个世界问题列表,并让用户按重要性顺序排列它们。

现在我正在尝试分配数字值,以便用户可以通过键入 1-5 来轻松调用它们来组织它们。我编写的代码不起作用,我只是想看看我是否遗漏了什么。

int main()
{
    string topics[5]{"World Hunger", "Government Oppression", "Genocide", "Disease", "Poor Education"};

    int responses[2][5] = {{1,2,3,4,5},{1,2,3,4,5}};

    topics[5] = responses[5];
    return 0;
}

错误:从“int*”到“char”的无效转换

4

1 回答 1

0
for(int i=0; i<5; ++i) {
    std::cout << i+1 << ". " << topics[i] << std::endl;
}
std::cin >> userChoice;

if(userChoice == topics[0] || userChoice == "1") {
    //etc
} else if(userChoice == topics[1] || userChoice == "2") {
    //etc
} else if(/*etc etc etc*/) { //....
于 2013-10-28T01:56:59.867 回答