-1-
-2-
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication10
{
class Program
{
public static void login(int t)
{
int i;
string a;
for (i = 1; i <= t ; i++)
{
Console.Write("Type Your Name Please: ");
a = Console.ReadLine();
if (a == "admin")
{
Console.Write("Welcome Mr " + a);
break;
}
else
{
Console.WriteLine(" triral no " + i);
}
}
if (i >t) Console.WriteLine("end of trials ");
Console.ReadKey();
}
static void Main(string[] args)
{
login(10);
}
}
}
-3-
-4-