Advertisement
rengetsu

ProcedurProgramavimas_1.05

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