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.0071 sec