2 solutions

  • 0
    @ 2026-2-9 21:24:47

    #include<bits/stdc++.h> using namespace std; int main(){ double f; cin>>f; double c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; return 0; }

    • 0
      @ 2025-7-13 15:27:42
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
        double c,f;
        cin>>f;
        c=5*(f-32)/9;
        printf("%.5f",c);
        return 0;
      }
      
      • 1

      Information

      ID
      1252
      Time
      1000ms
      Memory
      128MiB
      Difficulty
      4
      Tags
      # Submissions
      64
      Accepted
      28
      Uploaded By