简单的口令检查程序(c程序设计)

简单的口令检查程序(c程序设计),第1张

#include<stdio.h>

#include<string.h>

main()

{int cs=0

int pw=8888

int lr

printf('Please enter the password:)

scanf(%d,lr)

while(cs<3)

{if(lr=pw)

{printf('You are welcome!')

cs=3}

else

{printf('\nWrong passward!\n')

cs++

printf('Enter again:\n')

scanf(%d,lr)

}

if(lr!=pw)

{printf('You have entered three times! You are not welcom!')

}}

一下吧

#include <stdio.h>

#include <string.h>

int main( )

{

int t = 3

char psw[50]="hello"

char pass[50]

while(t--)

{

gets(pass)

if(strcmp(psw, pass) == 0)

{

puts("登录成功")

break

}

else printf("登录失败,你还有%d机会\n", t)

}

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11795436.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存