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)

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