Dec 10, 2011

Program : Convert Fahrenheit to Celsius Temp

Program : Convert Fahrenheit to Celsius Temp Take Value from User

#include <iostream.h> // for cout , cin
#include <conio.h> // for getch()


int main()

{

float ft; /* we declare variable ft as float data type can store decimal values also temperature can be come in decimal */ 

 cout << " Enter The Value in Fahrenheit" <<endl; /* <<endl is for new line like \n for new line.*/

cin >> ft; /* Take Value from user and assign to ft variable we can use this variable later in this program and value stored by variable its temporary store ones application close all value reset and again we have to assign value to that variable */

float ct = (ft-32) * 5/9 ;

 /* ct variable is define and initialize with a formula that equate the values. Celsius = (F-32)*5/9 . In this we write (ft-32) because its first subtract then its multiply by 5/9. if we write directly ft-32*5/9 its first multiply then its subtract. */

 cout << ft << " in celsius = " <<ct <<endl; 
/* in this << ft show the value that stored in ft, << "in Celsius = " it just Print The text within double quote & << ct to display equated value that stored in ct variable */

getch();
return 0;

}


Above Program Without Comments

#include <iostream.h>
#include <conio.h>
int main()

{
float ft; 

cout << " Enter The Value in Fahrenheit" <<endl; 
cin >> ft; 
float ct = (ft-32) * 5/9 ;
cout << ft << " in celsius = " <<ct <<endl;
getch();
return 0;


}

OUTPUT 





Related Posts:

  • Using Nested Condition Using Nested Condition Nested Condition is if else condition that is used under if or else condition. Its condition within condition. Like : We have… Read More
  • Program : Show Sqaures of Number upto n terms Program : Show Sqaures of Number This program first take input from user that an integer value and show the squares of term upto the number that ent… Read More
  • Using Nested Loop  Using Nested Loop Nested Loop is using loop inside a loop like for loop is under for loop for example:  for(int i=0;i<10;i++) {for(int… Read More
  • Using else if statement Using else if statement Else if statement is similar to if condition. In else-if condition you can give more than one condition like we have to give… Read More
  • Using Conditional Statements Using Conditional Statements The if statement is used to check the condition. If Condition is true Then particular code execute and if condition is … Read More

0 comments:

Post a Comment