Advertisement
Guest User

Untitled

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