- Curso
- Funciones A
- Intercambiar parámetros por referencia
Intercambiar parámetros por referencia
Última actualización:
23/08/2020
⁃
Dificultad:
Intermedio
Cree una función llamada Swap para intercambiar los valores de dos números enteros, que se pasan por referencia.
Entrada
Salida
Solución
using System;
public class IntercambiarParametrosReferencia
{
public static void Main(string[] args)
{
int x = Convert.ToInt32(Console.ReadLine());
int y = Convert.ToInt32(Console.ReadLine());
Swap(ref x, ref y);
Console.WriteLine("{0} {1}", x, y);
}
public static void Swap(ref int x, ref int y)
{
int temp = x;
x = y;
y = temp;
}
}