簡單密碼登入介面

2021-09-29 10:27:32 字數 1624 閱讀 6218

#define _crt_secure_no_warnings

#include

#include

#include

intmain()

;printf

("您只有3次機會!");

printf

("請輸入6位密碼:");

scanf

("%s"

,&password)

;//字串比較函式,一般形式為strcmp(字串1,字串2)。

//如果全部字元相同,則認為相等 if(

strcmp

(password,

"123456")==

0)else

}//當您輸入三次錯誤時系統會自動提醒您的三次機會已經用完了

if(i ==3)

system

("pause ");

return0;

}理解:看自己輸入的密碼是否與原來密碼相同,利用strcm函式來進行判定輸入的兩個字串是否相等,如果相等立馬列印出來。

執行結果:輸入了三次錯誤的密碼!

輸入了3次最後一次正確:

輸入一次直接正確:

c語言 strcmp() 函式用於對兩個字串進行比較(區分大小寫)

標頭檔案:string.h

原型:strcmp(str1str2);引數 str1 和 str2 是參與比較的兩個字串。

strcmp() 會根據 ascii 編碼依次比較 str1 和 str2 的每乙個字元,直到出現不到的字元,或者到達字串末尾(遇見\0)。

返回值:

如果返回值 < 0,則表示 str1 小於 str2.

如果返回值 > 0,則表示 str2 小於 str1.

如果返回值 = 0,則表示 str1 等於 str2.

舉例:

使用c語言 strcmp() 函式比較使用者輸入的兩個字串。

#define _crt_secure_no_warnings

#include

#include

#include

intmain()

;char str2[50]

=;int i =1;

while

(i <=3)

else

i++;}

if(i ==4)

system

("pause");

return0;

}

執行結果:

賬號密碼登入介面

後台 select username,password from users where username uname and password passwd limit 0,1 輸入賬號 dumb 密碼 dumb2 select username,password from users where...

vue 登入介面記住密碼

html部分 class ms login model ruleform rules rules ref ruleform label width 0px class demo ruleform prop username v model ruleform.username placeholder ...

Python Tkinter 簡單登入介面

學了兩天的gui,現在終於可以寫乙個最簡單的登入介面了,瞬間覺得python加上tkinter簡單到爆啊,如果不是專門做gui,只是輔助做做影象介面的,這簡直是逆天啊!author freedom from tkinter import class reg frame def init self,m...