algorithm
dovelet - 섭씨온도를 화씨온도로 변환/CtoF
블루건
2016. 7. 7. 16:27
dovelet - 섭씨온도를 화씨온도로 변환/CtoF
#include <iostream>int main(){int input;std::cin >> input;std::cout.precision(1);std::cout << std::fixed << (float)9 / 5 * input + 32 << std::endl;return 0;}