我是编程新手。我正在使用Pelles C ide编译C,它昨天还在工作,但现在出现了这个错误。
以下是项目代码:
#include <stdio.h>
int main(void)
{
double operand1;
double result;
char operator;
double operand2;
printf("This is a calculator");
printf("Type a simple expression...");
scanf("%lf %s %lf", &operand1, &operator, &operand2);
if(operator == '+')
{
result = operand1 + operand2;
}
else if (operator == '-')
{
result = operand1 + operand2;
}
else if (operator == '*')
{
result = operand1 * operand2;
}
else if (operator == '/')
{
result = operand1 / operand2;
}
else
{
printf("Wrong input. Exiting.");
return 1;
}
printf("The answer is: %lf ", result);
return 0;
}
这个错误的原因是什么?
还有这个,我以前不记得了
最佳答案
我从未使用过那个特定的IDE,但看起来您的项目类型已经从控制台意外地更改为Windows应用程序。
关于c - POLINK:错误:无法解析的外部符号。佩莱斯C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19296670/