#include <iostream>
using namespace std;
int main()
{
float x, y;
cout << "enter x: ";
cin >> x;
y = (5 * x * x - 4) / (2 * x + 8)
cout << "y = " << y << endl;
cout << "x = " << x << endl;
}
Поделитесь своими знаниями, ответьте на вопрос:
Задача по информатике. Нужно написать программу на C++. Фото приложил
#include <iostream>
using namespace std;
int main()
{
float x, y;
cout << "enter x: ";
cin >> x;
y = (5 * x * x - 4) / (2 * x + 8)
cout << "y = " << y << endl;
cout << "x = " << x << endl;
}