fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int f;
  6. cout <<"Temperatura w stopniach Firenheita: ";
  7. cin>>f;
  8. cout<< f <<" stopni F to "<< (f-32)*5/9 ;
  9. cout <<"stopni C " << endl;
  10. return 0;
  11. }
Success #stdin #stdout 0s 5308KB
stdin
38
stdout
Temperatura w stopniach Firenheita: 38 stopni F to 3stopni C