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) คืออุณหภูมิในหน่วยฟาเรนไฮต์

แนวทางที่ใช้ด้านล่างมีดังนี้

  • อุณหภูมิอินพุตในตัวแปร float สมมุติว่าฟาเรนไฮต์
  • ใช้สูตรแปลงอุณหภูมิเป็นเซลเซียส
  • พิมพ์องศาเซลเซียส

อัลกอริทึม

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