c++/gcc 7/3/0
#include <iostream>
#include <cmath>
int main()
{
float x;
std::cout << "Введите x: ";
std::cin >> x;
float
a = 0.3f,
k = 3.f,
y = std::sqrt(2 * x),
result = (y > 3) ? (y - (a * std::pow(y, 3)) / (2 * std::log(y))) :
(((2 <= y && y <= 3)) ? (std::pow(std::cos(k * y), 2)) :
((y < 2) ? (std::exp(-y)) : (0)));
(result) ? (std::cout << "Ответ: " << result << std::endl) : (std::cout << "Y не попадает не под какие-либо выражения." << std::endl);
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
c++/gcc 7/3/0
#include <iostream>
#include <cmath>
int main()
{
float x;
std::cout << "Введите x: ";
std::cin >> x;
float
a = 0.3f,
k = 3.f,
y = std::sqrt(2 * x),
result = (y > 3) ? (y - (a * std::pow(y, 3)) / (2 * std::log(y))) :
(((2 <= y && y <= 3)) ? (std::pow(std::cos(k * y), 2)) :
((y < 2) ? (std::exp(-y)) : (0)));
(result) ? (std::cout << "Ответ: " << result << std::endl) : (std::cout << "Y не попадает не под какие-либо выражения." << std::endl);
return 0;
}