using namespace std;
void calculate(float x, float y) {cout << "Умножение x y: " << x y << endl;cout << "Деление x / y: " << x / y << endl;}
int main() {float x, y;
}
using namespace std;
void calculate(float x, float y) {
cout << "Умножение x y: " << x y << endl;
cout << "Деление x / y: " << x / y << endl;
}
int main() {
cout << "Введите два вещественных числа x и y: ";float x, y;
cin >> x >> y;
calculate(x, y);
return 0;
}