Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
float a, t, r=0;
cout << "Введите t:";
cin >> t;
cout << endl;
cout << "Введите a:";
cin >> a;
if (t > 0.5 && t < 1) {
r = t + a;
}
else if (t >= -1 && t <= 0.5) {
r = abs(t - cos(pow(a, 3)));
else if (t == 1) {
r = log(abs(t - a));
cout << r;
return 0;
Объяснение:
надеюсь правильно
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
#include <cmath>
using namespace std;
int main() {
setlocale(LC_ALL, "Rus");
float a, t, r=0;
cout << "Введите t:";
cin >> t;
cout << endl;
cout << "Введите a:";
cin >> a;
cout << endl;
if (t > 0.5 && t < 1) {
r = t + a;
}
else if (t >= -1 && t <= 0.5) {
r = abs(t - cos(pow(a, 3)));
}
else if (t == 1) {
r = log(abs(t - a));
}
cout << r;
return 0;
}
Объяснение:
надеюсь правильно