fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int f;
  6. cout << "temperatura w stopniach Faremheita: " ;
  7. cin>>f;
  8. cout<<f << " stopni to "<< (f-35)*5/9 ;
  9. cout << " stopni Celsjusza " << endl;
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5324KB
stdin
33
stdout
temperatura w stopniach Faremheita: 33 stopni to -1 stopni Celsjusza