gpt4 book ai didi

c++ - 在 mac osx 上找不到体系结构 x86_64 错误的符号

转载 作者:搜寻专家 更新时间:2023-10-31 02:14:51 24 4
gpt4 key购买 nike

我目前正在学习 C++ 类(class)。我在 MAC OSX 上使用 Eclipse Luna。我不确定此错误消息。 Snap of Error Message什么可能导致编译错误?

代码只是为果汁机设计一个支付系统。

谢谢。

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

void disProduct (string);

int main ()
{
int choice;
string orange, apple, mango, strawberryBanana;

cout << "1 for orange juice \n"
<< "2 for apple juice \n"
<< "3 for mango juice \n"
<< "4 for strawberry-banana juice \n"
<< "9 to exit \n";

cin >> choice;

switch(choice)
{
case 1:disProduct(orange);
break;
case 2:disProduct(apple);
break;
case 3:disProduct(mango);
break;
case 4:disProduct(strawberryBanana);
break;
}

return 0;
}

void dispProduct (string name)
{
int vend;
cout << "please enter 50 cents";
cin >> vend;

while (vend > 0)
{
if(vend < 50)
{
cout << "Please enter the remaining amount of " << 50- vend;
}

if (vend >= 50)
{
cout << "please take your "<< name <<"juice and change
<< in the amount of " << vend - 50;
}
}

}

最佳答案

声明的函数原型(prototype)是void disProduct (string);,但实际定义是void dispProduct (string name),两者的名字不一样。

同时添加 string header 。

关于c++ - 在 mac osx 上找不到体系结构 x86_64 错误的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39439948/

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