Skip to content

Instantly share code, notes, and snippets.

@ghostofgamer
Created May 8, 2022 12:30
Show Gist options
  • Save ghostofgamer/e662e97a465642f371e6d9f637808e65 to your computer and use it in GitHub Desktop.
Save ghostofgamer/e662e97a465642f371e6d9f637808e65 to your computer and use it in GitHub Desktop.
string name = "Petrov";
string surname = "Ivan";
string intermediary;
Console.WriteLine("Ваше имя:" + name);
Console.WriteLine("Ваша фамилия: " + surname);
intermediary = surname;
surname = name;
name = intermediary;
Console.WriteLine("Ваше имя:" + name);
Console.WriteLine("Ваша фамилия: " + surname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment