Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4. int main(){
  5. double x;
  6. cout<<"x=";
  7. cin>>x;
  8. double A;
  9. A=sqrt(pow(x,1/3)+cos(x))/(fabs(pow(x,2)-1));
  10. cout<<"Answer="<<A<<endl;
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement