//prg to read temp in celsius & display in F
//Downloaded From www.c4cpp.co.nr. (C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float k,c;
cout<<"Enter the temp in Celsius :";
cin>>c;
k=(9/5)*c+32;
cout<<"Temperature in Farenheit = "<<k;
getch();
}
Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]
Celcius To Farenheit
Click Here To Download C++ File Of This Program
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment