You are on page 1of 1

/******************************************************************************

Online C++ Compiler.


Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.

*******************************************************************************/

#include <iostream>
using namespace std;
#include <iomanip>
#include <cmath>

int main()
{
double x,t,V,up,dn,ctg;
cout<<"introduceti x="; cin>>x;
cout<<"introduceti t="; cin>>t;
up=(2*pow(x,5))+5;
dn=sqrt(x+pow(t,2));
ctg=sin(x)/cos(x);
V=((pow(ctg,2))*(pow(x,3)))+(up/dn);
cout<<setprecision(4)<<V<<endl;
return 0;
}

You might also like