फारेनहाइट में तापमान 'एन' के साथ दिया गया और चुनौती दिए गए तापमान को सेल्सियस में परिवर्तित करना और इसे प्रदर्शित करना है।
उदाहरण
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