fork download
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. int main() {
  5. float t;
  6. std::cin >> t;
  7. std::cout << std::fixed << std::setprecision(4) << t*9/5+32;
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 3344KB
stdin
Standard input is empty
stdout
32.0000