Guest User

Untitled

a guest
Jun 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace PW
  7. {
  8.     class PwCheck
  9.     {
  10.         public static void Main(string[] args)
  11.         {
  12.             Console.ForegroundColor = ConsoleColor.Green;
  13.             String pass;
  14.             String k = "Passwort";
  15.             Console.WriteLine(k);
  16.             pass = Console.ReadLine();
  17.             if (pass =="Matrix");
  18.             {
  19.                 Console.WriteLine("PASSED");
  20.                 Console.ReadLine();
  21.            
  22.             }    
  23.         }
  24.    
  25.     }
  26. }
Add Comment
Please, Sign In to add comment