Advertisement
Montagne94

3. Работа со строками

Jan 7th, 2025 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.65 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     internal class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             string nickName;
  10.             string password;
  11.            
  12.             Console.WriteLine("Введите ваш ник");
  13.             nickName = Console.ReadLine();
  14.             Console.Clear();
  15.            
  16.             Console.WriteLine("Введите пароль");
  17.             password = Console.ReadLine();
  18.             Console.Clear();
  19.            
  20.             Console.WriteLine($"Ваш никнейм {nickName}. Ваш пароль {password}");
  21.             Console.ReadLine();
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement