Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace HomeWork
- {
- internal class Program
- {
- public static void Main(string[] args)
- {
- string nickName;
- string password;
- Console.WriteLine("Введите ваш ник");
- nickName = Console.ReadLine();
- Console.Clear();
- Console.WriteLine("Введите пароль");
- password = Console.ReadLine();
- Console.Clear();
- Console.WriteLine($"Ваш никнейм {nickName}. Ваш пароль {password}");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement