Ответ:
На питоне:
x = int(input())
y = 56 - (42/x) + (22*x*x)
print(y)
На c++
#include <iostream>
using namespace std;
int main()
{
double x;
cin >> x;
y = 56 - (42/x) + (22 * x * x)
cout << y << endl;
return 0;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
На питоне:
x = int(input())
y = 56 - (42/x) + (22*x*x)
print(y)
На c++
#include <iostream>
using namespace std;
int main()
{
double x;
cin >> x;
y = 56 - (42/x) + (22 * x * x)
cout << y << endl;
return 0;
}