👤

Va rooog problema la info

Va Rooog Problema La Info class=

Răspuns :

#include <iostream>

#include <cmath>

using namespace std;

float f(float x){

if(x>=4) return 2*sqrt(x+6);

else return 3-abs(x);

}

int main(){

float x,y;

 

cout << "x = ",cin >> x;

 

y=f(x);

 

cout << "y = " << y;

}