Red de conocimiento informático - Problemas con los teléfonos móviles - Programación de intercambio

Programación de intercambio

Jaja, acabo de regresar de jugar a la pelota y me estoy preparando para hervir agua para un baño. Vi que el agua no estaba hirviendo, así que te lo escribí y, por cierto, puedes aprender de ello. El código es el siguiente:

# include & ltiostream & gt

Usar espacio de nombres std

void swap1(int i, int j);

void swap2(int *i, int * j);

int main()

{

int x, y;

cout & lt& lt"Ingrese dos números enteros"

CIN & gt;& gtx & gt& gty;

swap1(x, y);

cout & lt& ltx & lt& lt" " " & lt& lty & lt& ltendl

intercambio 2(& x & y);

cout & lt& ltx & lt& lt " " " & lt& lty & lt& ltendl

Retorno 0;

}

void swap1(int i, int j)

{

Temperatura interna;

temp = I;

I = j;

j =temperatura;

}

intercambio vacío2(int *i, int*j)

{

int t;

t = * I

* I = * j;

* j = t;

}

Después de ejecutar, ingrese 1 ^ 2 y obtendrá el resultado deseado. .