안녕하세요. 오유 눈팅하는 오징어입니다.
다름이 아니라 C언어를 배우고 있는데,
학교에 깔린 비쥬얼스튜디오에서 정상작동되는 코드가
집에 깔아놓은 Visual Studio 2010 express에서는
대버깅이 안되고 계속 실패로 나오네요TT
원인이 무엇일까요?
오유 컴게 C언어 고수분들의 조언 부탁드립니다.
코드는 다음과 같습니다.
#include
int main()
{
int r;
const double PI=3.141592;
printf("Please input the integer number of radius : ");
scanf("%d", &r);
printf("-----------------------------------------------\n");
printf("1. The area of square : %d \n", 2*r*2*r);
printf("2. The area of circle : %.2f \n", r*r*PI);
printf("3. the area of colored : %.2f \n", (2*r*2*r)-(r*r*PI));
printf("-----------------------------------------------\n");
printf("4. Circumference of square : %d \n", 4*2*r);
printf("5. Circumference of circle : %.2f \n", 2*r*PI);
printf("6. Circumference of colored : %.2f \n", (4*2*r)+(2*r*PI));
}