Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace IJuniorPractice
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- string name = "Жир";
- string surname = "Артём";
- string changingPlaces;
- Console.WriteLine($"Ваше имя: {name} \nВаша фамилия: {surname}");
- Console.WriteLine("Меняем местами...");
- changingPlaces = name;
- name = surname;
- surname = changingPlaces;
- Console.WriteLine($"Ваше имя: {name} \nВаша фамилия: {surname}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement