fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. float zmiana(float m) {
  5. return m * 1.609;
  6. }
  7. int main() {
  8. cout << zmiana(10) << endl;
  9. cout << zmiana(50) << endl;// your code goes here
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
16.09
80.45