Advertisement
Stanislav2812

Untitled

Aug 16th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. using System;
  2. using System.Threading;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8.  
  9. namespace MyFirstProgram
  10. {
  11.     class Program
  12.     {
  13.        
  14.         static void Main(string[] args)
  15.         {
  16.  
  17.             Console.WriteLine("Введите пароль");
  18.             string userPassword = Console.ReadLine();
  19.             int password = 1234;
  20.             int i = 0;
  21.  
  22.             while (i < 4 && password != Convert.ToInt32(userPassword))
  23.             {
  24.                 Console.WriteLine("Попробуй еще раз");
  25.                 userPassword = Console.ReadLine();
  26.                 i++;
  27.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement