¶
~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; }