Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <cstdlib>
  4. int main()
  5. {
  6. float a = 1.5,d=1.3,e=03;
  7. float k, w, t;
  8.  
  9. printf("Введите значения k, w и t: ");
  10. scanf_s("%f%f%f", &k, &w, &t);
  11.  
  12. float x;
  13.  
  14. x = (a - sqrt(sin(w * t + e)) - pow(e, w * t)) / pow(log(2 * k + d) + pow(d, 3 * k), 1 / 3);
  15.  
  16. printf("x=%f", x);
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement