More actions
소스
#include "iostream"
using namespace std;
using std::endl;
int main()
{
cout << "섭씨 온도를 입력하고 ENTER 키를 누르십시오 : ";
double celsius =0 ;
double fahrenheit =0 ;
cin >> celsius ;
fahrenheit = 1.8 * celsius + 32 ;
cout << "섭씨 " << celsius << "도는 화씨 " << fahrenheit << "도 입니다" << endl ;
return 0;
}
나에게 할말
정서군.. 소스는 ---- [05학번만의C++Study/숙제제출/1]