Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C에서 화씨를 섭씨로 변환하는 프로그램

<시간/>

화씨 온도 'n'이 주어지면 주어진 온도를 섭씨로 변환하여 표시하는 것이 과제입니다.

예시

Input 1-: 132.00
Output -: after converting fahrenheit 132.00 to celsius 55.56
Input 2-: 456.10
Output -: after converting fahrenheit 456.10 to celsius 235.61

화씨에서 섭씨로 온도를 변환하기 위해 다음과 같은 공식이 있습니다.

T(°C) =(T(°F) - 32) × 5/9

여기서 T(°C)는 섭씨 온도이고 T(°F)는 화씨 온도입니다.

아래에 사용된 접근 방식은 다음과 같습니다. -

  • 플로트 변수의 입력 온도를 화씨라고 가정해 봅시다.
  • 온도를 섭씨로 변환하는 공식 적용
  • 섭씨 인쇄

알고리즘

Start
Step 1-> Declare function to convert Fahrenheit to Celsius
   float convert(float fahrenheit)
      declare float Celsius
      Set celsius = (fahrenheit - 32) * 5 / 9
      return Celsius
step 2-> In main()
   declare and set float fahrenheit = 132.00
   Call convert(fahrenheit)
Stop

예시

#include <stdio.h>
//convert fahrenheit to celsius
float convert(float fahrenheit) {
   float celsius;
   celsius = (fahrenheit - 32) * 5 / 9;
   return celsius;
}
int main() {
   float fahrenheit = 132.00;
   printf("after converting fahrenheit %.2f to celsius %.2f ",fahrenheit,convert(fahrenheit));
   return 0;
}

출력

위의 코드를 실행하면 다음 출력이 생성됩니다.

after converting fahrenheit 132.00 to celsius 55.56