느낀 및 명 ¶
는?
C++ ¶
~cpp #include<iostream> float fahrenheit(float); void main(){ float celsius; std::cout << " 를 력고 Enter 를 르 : "; std::cin >> celsius; std::cout << "" << celsius << "는 로 " << fahrenheit(celsius) << "다.\n"; } float fahrenheit(float celsius) { return 1.8*celsius+32; }
나게 말 ¶
문 말듯, 문는 C++ 기 력 만 게 것 ~
보고, using namespace std; 는, 뭐 런것 고 만 C++ 겸.
는 C++를 많 봤겠만, 대다는 그렇든.. iostream 대 보 .
그리고, 가 는 문 대 답 닌것 같데? 문를 고 길 -
3까 다 ?
----
05만C++Study//1