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条)

报告相同问题?

悬赏问题

  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用