Advertisement
rengetsu

ProcedurProgramavimas_1.06

Feb 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5. int main()
  6. {
  7.     long double x, g;
  8.  
  9.     cin>>x;
  10.  
  11.     g=((pow((5*x),3)+(sin*sin))*((pow(exp,3*x))-(16(x*x))))/(((sin(4x))/(cos(4x)+1))+fact(0));
  12.  
  13.     cout<<fixed<<setprecision(2)<<g<<endl;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement