我是编程的新手,这可能是一个愚蠢的问题,但我不能让这个简单的代码在Eclipse上工作.我正在使用C++.
int main() {
string fruits[] = {"Apple", "Melon", "Banana". "Orange", "Pineapple"};
cout << "Fruit I want to eat : " << fruit[3] << endl;
return 0;
}
Run Code Online (Sandbox Code Playgroud)
我不断得到( Statement has no effect 'string')和其他东西错误,帮助?