U E D R , A S I H C RSS

05학번만의C++Study/숙제제출1/이형노

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

... fah ... ?? ...ㅋㅋ -- (laciel)형

----05학C++Study 05학C++Study/
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:22:04
Processing time 0.0161 sec