Header Ads

Header ADS

Program to convert temperature from Fahrenheit degree to Centigrade degrees

Program to convert temperature from Fahrenheit degree to Centigrade degrees
   सबसे पहले तो हम logically जानेगे कि हम फ़ारेनहाइट temperature को सेंटीग्रेड में कैसे change कर सकते है किसी भी फ़ारेनहाइट temperature को Celsius में बदलने के लिए हम निम्नलिखित स्टेप्स फॉलो करते है 
  1. हम दिए गये फ़ारेनहाइट temperature में से 32 subtracts ( घटाना ) करेंगे
  2. इसके बाद हम 0.5556 या 5/9 से multiply (गुणा ) करेंगे 
   इससे हमारा temperature सेल्सियस में change हो जायेगा हम अब C language में इसकी coding देखेंगे more details    

OUTPUT

   Enter temperature in Fahrenheit:  70
Temperature in Celsius is:  21.112801

INPUT

                                           
       /*Program to convert temperature from degree Fahrenheit to centigrade*/

#include<stdio.h>
#include<conio.h>
void main()
 {
     float fah,cals;   //declare decimal type variable by user

     printf("Enter temperature in Fahrenheit:   ");
     scanf("%f",&fah);    //to input Fahrenheit temperature by user

     /*formula to convert temperature*/
     cals=(fah-32)*0.5556;

    /*print the temperature in Celsius*/
     printf("\nTemperature in Celsius is : %f",cals);
     getch();
 }

इसी तरह आप सेल्सियस को फ़ारेनहाइट में बदलने का program बना सकते है सेल्सियस को फ़ारेनहाइट में बदलने का निम्नलिखित formula  है
  Fahrenheit=(1.8*Celsius)-32

1 comment:

  1. Aapne asan tarike se tapman ko badalne sikhlaya.jankari sajha karne ke liye dhanybad
    dekhe hamare web programming tutorial website
    https://www.welookups.com

    ReplyDelete

Powered by Blogger.