fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main() {
  6. double TF{100.0};
  7. double TC {};
  8.  
  9. TC=(TF-32)*(5/9);
  10. cout<<TC;
  11.  
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty