Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Light
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             int i = 0;
  15.             while (i < 5)
  16.             {
  17.                 Console.WriteLine("Пароль неверен");
  18.                 i++;
  19.             }
  20.             Console.WriteLine(i);
  21.  
  22.            
  23.  
  24.             Console.WriteLine("Enter your age: ");
  25.             int UserAge = Convert.ToInt32(Console.ReadLine());
  26.  
  27.             for(int i = 0;i < UserAge; i++)
  28.             {
  29.                 Console.WriteLine("Happy birthday");
  30.             }
  31.  
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement