#include <stdio.h>
int main()
{
float celsius, fahr;
int upper, lower, step;
upper = 100;
lower = -10;
step = 10;
celsius = lower;
while (celsius <= 100) {
fahr = celsius*(9.0/5.0)+32.0;
printf("%3.0f %6.1f\n", celsius, fahr);
celsius = celsius + step;
}
return 0;
}
비쥬얼 스튜디오에서는 정상실행 되어서 sample output 과 동일하게 작성이 되는데 왜 자꾸 presentation error가 나는지 모르겠습니다. 혹시 어디서 잘못된 것인지 가르쳐주실 수 있으신가요?