局限輸入次數(shù)的系統(tǒng)登陸的完成
發(fā)表時間:2024-02-16 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]今天在外面看書 看到一個寫登陸的程序 可是沒有限制登陸的次數(shù)想了一下 做了這個程序 簡單的來表示一下如何限制 登陸次數(shù)using System;namespace Ginger547class Class1public static void Main(string[] args)int i = ...
今天在外面看書 看到一個寫登陸的程序 可是沒有限制登陸的次數(shù)
想了一下 做了這個程序 簡單的來表示一下如何限制 登陸次數(shù)
using System;
namespace Ginger547
{
class Class1
{
public static void Main(string[] args)
{
int i = 3;
string strInput = null ;
for (i = 1 ; i<= 3 ; i++)
{
Console.WriteLine ("輸入密碼");
strInput = Console.ReadLine();
if (strInput =="Ginger547")
break;
else
Console.WriteLine("密碼錯誤,無法進(jìn)入");
Console.WriteLine();
}
if (strInput == "Ginger547")
Console.WriteLine("Login 成功");
else
Console.WriteLine("非法進(jìn)入.......");
Console.ReadLine();
}
}
}