#include <cmath>
#include <iostream>
using namespace std;
int main() {
double f;
int x, a;
cin >> x >> a;
if (x > 0 && x < 2) {
f = pow(x - a, 1 / 3) + log(x);
}
else if (x >= 2 && x <= 5) {
f = pow(x + 1, 1 / 4) + exp(x); //не видно точно x там или -x, сами исправите если нужно
else if (x > 5) {
f = 0;
cout << f;
return 0;
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <cmath>
#include <iostream>
using namespace std;
int main() {
double f;
int x, a;
cin >> x >> a;
if (x > 0 && x < 2) {
f = pow(x - a, 1 / 3) + log(x);
}
else if (x >= 2 && x <= 5) {
f = pow(x + 1, 1 / 4) + exp(x); //не видно точно x там или -x, сами исправите если нужно
}
else if (x > 5) {
f = 0;
}
cout << f;
return 0;
}