#include <iostream>
using namespace std;
int main()
{
float x, y;
cout << "вираз: у=(3х^2-4)/(х-1)" << endl;
cout << "введіть х: ";
cin >> x;
y = (3 * x * x - 4) / (x - 1);
cout << "y = " << y << endl;
}
#include <cmath>
int main() {
float x;
cout << pow(3 * x, 2) - (4 / x - 1);
#include <iostream>
using namespace std;
int main()
{
float x, y;
cout << "вираз: у=(3х^2-4)/(х-1)" << endl;
cout << "введіть х: ";
cin >> x;
y = (3 * x * x - 4) / (x - 1);
cout << "y = " << y << endl;
}
#include <iostream>
#include <cmath>
using namespace std;
int main() {
float x;
cin >> x;
cout << pow(3 * x, 2) - (4 / x - 1);
}