大家都来看一看,哪里错了,错在哪里。
#include<stdio.h>#include<string.h>
#include<conio.h>
void password(); //用户登陆函数
main()
{
password();
}
void password() //用户登陆函数的实现
{
char name[20]; //用户名
char pasword[8]; //密码
int j; //输入错误计数器
printf("\t欢迎登陆学生管理系统");
j=0;
while(j<3)
{
printf("请输入要登陆的用户名:");
gets(name);
printf("\n\n请输入密码:");
gets(pasword);
if(strcmp(name,"admin")==0 && strcmp(password,"123")==0)
{
printf("\t\t\t登陆成功!!!!!!!!\n");
break;
}
else
{
j++;
clrscr();
printf("\t\t\t输入错误请重新输入!!!!!!!!!!!!\n") ;
}
}
}
[此贴子已经被作者于2007-10-25 11:06:48编辑过]