~cpp
#include <iostream.h>
double Fah; //화씨온도
double Cel; //섭씨온도
int main()
{
	Fah=0; 
	Cel=0; 
	
	cout << "섭씨 온도를 입력하고 Enter 키를 누르십시오 : ";
	cin >> Cel;
	Fah= 1.8*Cel + 32.0; //연산
	cout << "섭씨 " << Cel << "도는 화씨로 " << Fah << "도 입니다\n";
	return 0;
}










