#include <stdio.h>

int main () 
{
  float cel;
  float fah;

  printf("현재 온도를 입력해 주세요 : ");
  scanf("%f"&cel);
  fah = ((cel+40)*1.8)-40;
  printf("현재 온도는 화씨 [%3.1f] 입니다.\n", fah);
  return 0;
}

+ Recent posts