blob: c8ad2ce545804644cf458213c39730232ecde8d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
Random r = new Random();
string s = "";
string keypress = "";
for(int i = 0; i < 6; i++)
{
Console.Clear();
for(int j = 0; j <= i; j++)
//s += r.Next(10);
s += ((char)r.Next(65, 90));
Console.Write(s);
Thread.sleep(2000);
Console.Clear();
keypress = Console.ReadLine();
Console.Clear();
if(s != keypress) return;
Console.Write("Success");
Thread.Sleep(1000);
s = "";
}
|