Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     double x,y,z,t;
  8.     cin>>x>>y>>z;
  9.     t=(x*y*z-y*abs(x+sqrt(z)))/(pow(10.0,7.0)+pow(log10(4.0),4.0));
  10.     cout<<t;
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement