因此,我的第一堂 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”的无效转换