#include<stdio.h>
void main()
{
float c,f;
do{
printf("\n 섭씨온도를 입력하세요:");
scanf("%f",&c);
f=(9./5.)*(c+32);
printf("\n 섭씨온도%5.2f [oC]=화씨온도 %5[oF]\n",c,f);
}while(1);
}
이렇게 했더니
Compiling ..\프로그~1\섭씨를화.CPP:
Error ..\프로그~1\섭씨를화.CPP 1: Unable to open include file 'STDIO.H'
Fatal ..\프로그~1\섭씨를화.CPP 2: Unable to create output file 'D:\TCWIN\프로그래밍\섭씨를화.obj'
이렇게 오류가 뜨거든요--;; 저로선 오류를 모르겠어요;;
뭐 언에이블이 약한 무능력한 이런뜻이니깐 인클루드 파일을 열수 없다?--;;
이걸 고치는 방법좀 알려주세요
|