#include <iostream>
using namespace std;
void f(float x) {
if (x != 0)
cout << "При X = " << x << " Y = " << 9 / x;
else
cout << "На ноль делить не можем!";
}
signed main() {
setlocale(LC_ALL, "Rus");
int x;
cout << "Введите X: ";
cin >> x;
f(x);
return 0;
#include <iostream>
using namespace std;
void f(float x) {
if (x != 0)
cout << "При X = " << x << " Y = " << 9 / x;
else
cout << "На ноль делить не можем!";
}
signed main() {
setlocale(LC_ALL, "Rus");
int x;
cout << "Введите X: ";
cin >> x;
f(x);
return 0;
}