#include <iostream>
float x;
float y;
using namespace std;
int main(){
cout << "Enter x: ";
cin >> x;
y = (1-x*2+2,5*x*3+x*4)*2;
cout << y;
return 0;
}
Объяснение:
#include <iostream>
float x;
float y;
using namespace std;
int main(){
cout << "Enter x: ";
cin >> x;
y = (1-x*2+2,5*x*3+x*4)*2;
cout << y;
return 0;
}
Объяснение: