Created
May 8, 2022 12:30
-
-
Save ghostofgamer/e662e97a465642f371e6d9f637808e65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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