Advertisement
mariusqw

Untitled

Apr 3rd, 2020
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8. int x;
  9.  
  10. cout << "Iveskite x reiksme: "; cin >> x;
  11.  
  12. double y = ( (sqrt(pow(x, 4) + 3)) / ( abs((pow(x, 2) + 5)) ) ) + 4 * x;
  13.  
  14. cout << y;
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement