ranee

замена местами переменных

Aug 25th, 2022 (edited)
978
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2. namespace Lectures
  3. {
  4.     class Program
  5.     {
  6.         static void Main()
  7.         {
  8.             string name = "Глеб";
  9.             string surname = "Егорыч";
  10.             Console.WriteLine($"{name}-{surname}");
  11.             (name, surname) = (surname, name);
  12.             Console.WriteLine($"{name}-{surname}");
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment