标题:过来看看!
取消只看楼主
flysky2011++
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2007-11-30
 问题点数:0 回复次数:1 
过来看看!
用户登陆程序
#include<stdio.h>
#define N 10
#define M 12
#include<conio.h>
#include<string.h>
void main()
{
char p[N]={"happy"},n[N],putn[N],realn
={"hello"}; // 真实姓名 hello,密码是happy
int i,count=0,j=0;
printf("请输入你的用户名:\n");
gets(putn);//第一次输入名字
while(strcmp(putn,realn)!=0&&j<2)
{
  printf("请重新输入你的用户名:\n");
  gets(putn);
  j++;
}// 判断输入的名字是否正确,三次错误就结束
if(j=2&&strcmp(putn,realn)!=0)
  printf("对不起,你无法继续输入!\n");
if(strcmp(putn,realn)==0)//判断名字是否输入的正确
{
  while(count<3)
  {
   printf(" 请输入密码,并以回车结束:\n");
   for(i=0;;i++)
   {
    n[i]=getch();
    if(n[i]=='')
    break;
    printf("*");
   } // 输入密码回显*号
   printf("\n");
   n[i]='\0';// 字符串结束符
   if(strcmp(p,n)==0)//判断输入的密码是否正确
   {
    printf("welcome to the place!\n");
    break;//跳出循环
   }
else
  count++;
  }
  if(count>=3)
   printf("对不起,你无法继续输入!\n");

}
}

 
[/size]

[[it] 本帖最后由 flysky2011++ 于 2008-5-28 11:49 编辑 [/it]]
搜索更多相关主题的帖子: hello void include 用户名 count 
2008-05-04 01:52
flysky2011++
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2007-11-30
得分:0 
不好意思,我输入的时候输错了,应该把realn 改成 realn[N],我要用字符串数组啊!
呵呵!谢谢各位!

天空没有翅膀的痕迹,但我已飞过!
2008-05-28 11:47



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-212226-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.102128 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved