#include
using namespace std;
int main()
{
cout<<"025(cos(10π(x-1.5))+1)"<
}
//不知道你要使用这个式子还是要利用这个式子计算,我这个是只打印式子,你要是想利用式子
//进行计算再提问就行了。
#include
#include
int main()
{
float a;
float pi=3.1415926;
float x;
scanf("%f",&x);
a=25*(cos(10*pi*(x-1.5))+1);
printf("%.4f",a);
}
#define pi 3.1415926
0.25*(cos(10*pi*(x-1.5))+1)
#include
using std::cout;
using std::endl;
int main()
{
cout << "0.25(cos(10π(x-1.5))+1)" << endl;
}