Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Homework1_5
- {
- class Program
- {
- static void Main(string[] args)
- {
- string name = "Гнатюк";
- string surname = "Андрей";
- string saveName;
- Console.WriteLine($"Перепутано имя: {name}, фамилия:{surname}");
- saveName = name;
- name = surname;
- surname = saveName;
- Console.WriteLine($"Исправлено имя: {name}, фамилия:{surname}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement