密码验证的前部分
我是一个初学者,还不清楚。它的要求是,从键盘输入用户名和密码,接着将输入的数据显示到屏幕上;
然后确认输入信息,输入N或n重新执行输入数据;输入Y或y,判断密码是否正确,正确显示“进入系统,请稍候……”不正确显示“离开系统!”
我不会编了,求指教。
#include "stdio.h"
#include "conio.h"
int main(void)
{
int passwd;
char username[20],char a;
printf("please input the username:");
gets(username);
printf("please input the password:");
scanf("%d",&passwd);
printf("\n\n");
printf("1.The username is:");
puts(username);
printf("2.The password is:%d",passwd);
printf("\n\n");
printf("输入是否正确?(Y/N):");
a=getche(); //为什么用sanf()就错了
printf("%c",a);
/*while(a=='n'||a=='N')
{
;
};*/
printf("\n");
return 0;
}
问题:注释的那个地方哪儿错了?后面的该怎么写?
谢谢!