jeezmorty 2019-02-10 21:37 采纳率: 66.7%
浏览 654
已采纳

C语言基础疑问 代码最后的scanf为什么不执行?

这段代码是一个叫simon的游戏,就是输出任意数码 然后消失 然后请用户输入
但是很奇怪编译执行之后,最后一句printf执行了但是scanf却不执行 为什么
编译器是devc++
// a simple simon game
#include
#include
#include
#include
#include
int main(void)
{
char another_game='Y';
const unsigned delay=1;
bool answer=true;
unsigned tries=0;
unsigned digits=0;
time_t seed=0;
time_t wait_start=0;
unsigned number=0;

printf("To play a Simple Simon,watch the screen for a sequence of digits.");
printf("\nWatch carefully, as the digits are only played for %u second%s.",delay, delay==1?"":"s");
printf("\nThe computer will remove them, then prompt you to enter the same sequence.");
printf("\nWhen you do, you must put space in your digits.");
printf("\nGood luck! Press enter to play.\n");

do
{
    answer=true;
    tries=0;
    digits=2;

    while(answer)
    { 
        ++tries;

        srand(time(&seed));//without & the program goes wrong 
        for(unsigned i=1;i<=digits;++i)
            printf("%d ",rand()%10);//output the number

        wait_start=clock();
        for(;clock()-wait_start<delay*CLOCKS_PER_SEC;);
        printf("\r");
        for(unsigned i=1;i<=digits;++i)
            printf("  ");

        printf("\r");
        if(tries==1)
            printf("make sure enter the space between digits!\n");
        srand(seed);
        for(unsigned i=1;i<=digits;++i)
        {
            scanf("%u",&number);//how to make sure the value of seed is stayed
            if(number!=rand()%10)
            {
                answer=false;
            }
        }

        if(answer&&(tries%3==0))
            digits++;

        printf("%s\n",answer?"correct":"wrong");
    }

    printf("\nDo you want to play again(Y/N)?"); 
    scanf("%c",&another_game);

}while(tolower(another_game)=='y'); 

return 0;

}

  • 写回答

2条回答 默认 最新

  • threenewbee 2019-02-11 00:50
    关注

    在scanf前面加上一个
    fflush(stdin);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3