kwest87

Untitled

Mar 18th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. [StartCode]
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApp9
  9. {
  10.     internal class Program
  11.     {
  12.         static void Main(string[] args)
  13.         {
  14.             string name = "Иванов";
  15.             string surname = "Иван";
  16.             string verifiedSurname ;
  17.  
  18.             verifiedSurname = name;
  19.  
  20.             Console.WriteLine("Ваше имя " + name + " , ваша фамилия " + surname + ".Непрвильно.");
  21.  
  22.             name = surname;
  23.             surname = verifiedSurname;
  24.  
  25.             Console.WriteLine("Ваше имя " + name + " , ваша фамилия " + surname + ".");
  26.  
  27.         }
  28.     }
  29. }
  30. [EndCode]
Advertisement
Add Comment
Please, Sign In to add comment