Я хочу преобразовать этот код в C++
я хочу преобразовать этот код в c++
void makeMove(int *x, int *y) { // Take the input move printf("Enter your move, (row, column) -> "); scanf("%d %d", x, y); return; }
Что я уже пробовал:
void makeMove(int *x, int *y) { // Take the input move cout << "Enter your move, (row, column) -> "; cin >>x >>y; return; }