¶
~cpp
#include<iostream>
using namespace std;
float tofah(float );
int main()
{
float cel; //
float fah; //
cout << " 를 력고 Enter 를 르 : " ;
cin >> cel;
fah=tofah(cel);
cout << " " << cel << "는 로 " << fah << " 다." << endl;
return 0;
}
float tofah(float cel)
{
return (1.8 * cel) + 32.0;
}










