⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkpasswdmain.c

📁 check password
💻 C
字号:
/*
*File: checkPasswdMain.c
*----------------------
*This part is the main  function of the project CP Program (CP here means check password)
*/
#include "checkPasswdMain.h"
/*
*name:zhangjiwang
*ProjectName:checkPasswd
*time:2004-9-8
*/
/*
*Function: main
*Usage: none
*----------------
*Arithmetic or functions:The main function to finish the test of this program(check Password)
*
*/
void main()
{
  int b=0;
  char userName[1024];
  char passWord[1024];
  char end;
  while(b==0)
  {
	printf("please input your username:\n"); 
	scanf("%s",userName);
	printf("now set your password please:\n");
	scanf("%s",passWord);
	b=checkPasswd(userName,passWord);
	if(b==1)
	{
		printf("Your password now is qualified!\n");
		return;
 	}
 }
}


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -