fork download
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <cmath>
  4. #include <cstdlib>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10. /*
  11. 1. Napisać program obliczania wartości wyrażenia wg wzoru
  12. F = (3*z + 2*x + 1)/2;
  13. */
  14.  
  15. double x, z;
  16. double F;
  17.  
  18. cin >> x >> z;
  19.  
  20. F = (3*z + 2*x +1)/2;
  21.  
  22. cout << "F = " << F << endl;
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0s 3276KB
stdin
1.4 3.6
stdout
F = 7.3