fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. double calculate_f(double x, double y)
  5. //вместо if надо использовать оператор "?"
  6. {
  7. return (x > 0) ? (x + y) : ((x <= 0 && y < 0) ? fabs(y) : 5*x);
  8. }
  9.  
  10. int main()
  11. {
  12. double x = 4.0, y = 2.0;
  13. double f = calculate_f(x, y);
  14. printf("f = %lf\n", f);
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
f = 6.000000