Тема: Помилка у головній функції
не розумію в чому поблема
#include "stdafx.h"
#include <math.h>
#include <iostream>
using namespace std;
double one(double y1)
{
double x;
cout << "Enter the variable x value" << endl;
cin >> x;
y1 = 2 / (2 * x - 3);
return y1;
}
double two(double y2)
{
double x;
cout << "Enter the variable x value" << endl;
cin >> x;
y2 = pow(x,5)*pow((x+2),(-4))+pow(x,4);
return y2;
}
double three(double y3)
{
double x;
cout << "Enter the variable x value" << endl;
cin >> x;
y3 = 3 * sin(pow(x, 2)) + ((3.18*pow(x, (-2))) / (x + 3 * cos(x)));
y3 = 8*(1/(tan(x)))-((2.15*x)/(abs(tan(x)-2)));
return y3;
}
int main()
{
double z;
z = 0.5*one + two + three; // >>>>>>>>>>>>>>>>>пише, що помилка тут<<<<<<<<<<<<<<<<
cout << "result is " << z << endl;
system("pause");
return 0;
}