-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
56 lines (46 loc) · 1.48 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
using System.Linq;
namespace PasswordValidator
{
class Program
{
static void Main(string[] args)
{
char[] password = Console.ReadLine().ToCharArray();
bool length = CheckPassLength(password);
bool content = CheckPassContent(password);
bool digitsNum = CheckDigitsNum(password);
if (length && content && digitsNum)
{
Console.WriteLine("Password is valid");
}
else
{
if (!length)
{
Console.WriteLine("Password must be between 6 and 10 characters");
}
if (!content)
{
Console.WriteLine("Password must consist only of letters and digits");
}
if (!digitsNum)
{
Console.WriteLine("Password must have at least 2 digits");
}
}
}
static bool CheckPassLength(char[] password)
{
return (password.Length >= 6 && password.Length <= 10) ? true : false;
}
static bool CheckPassContent(char[] password)
{
return (Array.Exists(password, c => !Char.IsDigit(c) && !Char.IsLetter(c))) ? false : true;
}
static bool CheckDigitsNum(char[] password)
{
return (password.Count(Char.IsDigit) >= 2) ? true : false;
}
}
}