2013-10-10 2 views
1

프로그래밍이 처음이에요. 나는 C를 컴파일하기 위해 Pelles C ide를 사용하고 있으며 어제 작동했지만 지금은이 오류가 있습니다.POLINK : 오류 : 해결되지 않은 외부 기호. Pelles 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; 

}

이 오류의 원인은 무엇입니까 : 여기

enter image description here

프로젝트의 코드인가?

이, 나는이 거기 enter image description here

답변

1

전에 특정 IDE 있음을 사용한 적이 있지만, 프로젝트 유형이 우발적으로 윈도우에 콘솔 변경된처럼 보이는 기억하지 않습니다도있다 신청서.

+0

감사합니다. 틀림없이, 틀린 프로젝트 템플릿을 사용했습니다. 이 방법을 확인하는 방법을 모르지만 올바른 서식 파일에 코드를 붙여 넣었으므로 오류가 없습니다. – somethingSomething