标题:请教大家一个问题
取消只看楼主
nmdsyz
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2008-1-8
 问题点数:0 回复次数:3 
请教大家一个问题
这个程序输入字母为什么会死循环,如何修改,先谢谢了.
程序如下:
#include "stdio.h"
#include "stdlib.h"
main()
{
   int a,b,times=0;
   char c='y';
   randomize();
   a=rand()%10;
   printf("Please number:\n");
   while(c!='Y')
   {
   printf("%-4d",++times);
   scanf("%d",&b);
   if(a==b) c='Y';
   else printf("Erorrs\n");
   printf("\n");
   }
   printf("***************************\n");
   printf("Very Good!!!\nThe number is:%d\n",a);
   printf("***************************\n");
   getch();
}
搜索更多相关主题的帖子: include number 如何 字母 
2008-10-18 22:04
nmdsyz
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2008-1-8
得分:0 
补充一下:
#include "conio.h"
#include "stdio.h"
#include "stdlib.h"
main()
{
   int a,b,times=0;
   char c='y';
   randomize();
   a=rand()%10;
   printf("Please number:\n");
   while(c!='Y')
   {
   printf("%-4d",++times);
   scanf("%d",&b);
   if(a==b) c='Y';
   else printf("Erorrs\n");
   printf("\n");
   }
   printf("***************************\n");
   printf("Very Good!!!\nThe number is:%d\n",a);
   printf("***************************\n");
   getch();
}
2008-10-18 22:56
nmdsyz
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2008-1-8
得分:0 
应该怎么解决?
2008-10-18 23:08
nmdsyz
Rank: 1
等 级:新手上路
帖 子:27
专家分:0
注 册:2008-1-8
得分:0 
谢谢 6楼的前辈!!
问题已解决,不过又有一个问题:

e=getchar()!='\n;

这一句是什么意思!
2008-10-19 08:48



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




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

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