The simple code to find temperature from Celsius to Fahrenheit in C++
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoCd1Je2MjyBLKRaInYyeq4ETLEWW7epULYRbjqJ_1LDOzWSE_caCrVJ0acHB_DRgY28sH9laHievgd1h1RP64MdQRzjYJUyFvJM6DlxqzRIdM4o-rKX7p0BVz2v0ycjajksV-s0VspdRa/s640/c++.jpg)
CODE*********************************************************************
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{ double a;
double e;
cout <<"Celcious To Fahrenheit Converter"<< endl;
cout <<"-------------------------------"<< endl;
cout << "Enter Celcius Value:";
cin >> a;
e=(a/5)*9+32;
cout <<"Fahrenheit is: "<< e << endl;
return 0;
}
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhoCd1Je2MjyBLKRaInYyeq4ETLEWW7epULYRbjqJ_1LDOzWSE_caCrVJ0acHB_DRgY28sH9laHievgd1h1RP64MdQRzjYJUyFvJM6DlxqzRIdM4o-rKX7p0BVz2v0ycjajksV-s0VspdRa/s640/c++.jpg)
CODE*********************************************************************
#include "stdafx.h"
#include
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{ double a;
double e;
cout <<"Celcious To Fahrenheit Converter"<< endl;
cout <<"-------------------------------"<< endl;
cout << "Enter Celcius Value:";
cin >> a;
e=(a/5)*9+32;
cout <<"Fahrenheit is: "<< e << endl;
return 0;
}
********************************************************************************
then execute the program