| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 362 人关注过本帖
标题:为什么会超时!!!!!!!!!!
取消只看楼主 加入收藏
z6439186
Rank: 1
等 级:新手上路
帖 子:16
专家分:2
注 册:2011-11-15
结帖率:33.33%
收藏
 问题点数:0 回复次数:0 
为什么会超时!!!!!!!!!!

 #include <stdio.h>
 #include <conio.h>
 #include <stdlib.h>
 int strcompare(char str1[],char str2[])
 {
 int i=0;
 while(str1[i]==str2[i] && str1[i]!=0 && str2[i]!=0
)
 i++;
 return str1[i]-str2[i]; }
int main()
 { char password[20]="hnkd2011"; char input_pass[20];
 int i=0;
 while(1)
{ printf("Input password\n");
 gets(input_pass);
 if(strcompare(input_pass,password)!=0)
 printf("Error,please input again!");
 else break;
 getch();
 i++;
 if(i==3)
 printf("The program is terminated!");
 exit(0); }
 printf("congratulation!");
 return 0; }
我想问下他为什么会超时,而当把getch去了,再
 i++;
 if(i==3)
 printf("The program is terminated!");
 exit(0); }改成
 if(i==2)
{ printf("The program is terminated!");
 exit(0); }
 i++;},其中i改成二就不会超时了呢,两者好像没什么区别把?希望谁知道的告诉我下
搜索更多相关主题的帖子: password include please return 
2011-11-15 12:45
快速回复:为什么会超时!!!!!!!!!!
数据加载中...
 
   



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

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