#include <iostream>
using namespace std;
int main(){
cout.precision(10);
double x, y;
cin>>x;
if (x>0) y=x*2-4;
else y=2*x;
cout<<y;
}
Если в первой строке системы x*2 означает x в квадрате, то замените if (x>0) y=x*2-4; на if (x>0) y=x*x-4;
#include <iostream>
using namespace std;
int main(){
cout.precision(10);
double x, y;
cin>>x;
if (x>0) y=x*2-4;
else y=2*x;
cout<<y;
}
Если в первой строке системы x*2 означает x в квадрате, то замените if (x>0) y=x*2-4; на if (x>0) y=x*x-4;