码迷,mamicode.com
首页 > 其他好文 > 详细

猜数游戏,随机目标数字,直到猜中退出

时间:2019-06-17 01:18:35      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:生成   scan   span   lse   std   code   rand   div   while   

 

/* 猜数游戏(其三:目标数字是0~999的随机数)*/

#include <time.h>
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    int no;        /* 读取的值 */
    int ans;    /* 目标数字 */

    srand(time(NULL));        /* 设定随机数的种子 */
    ans = rand() % 1000;    /* 生成0~999的随机数 */

    printf("请猜一个0~999的整数。\n\n");

    do {
        printf("是多少呢:");
        scanf("%d", &no);

        if (no > ans)
            printf("\a再小一点。\n");
        else if (no < ans)
            printf("\a再大一点。\n");
    } while (no != ans);                    /* 重复到猜对为止 */

    printf("回答正确。\n");

    return 0;
}

输出

请猜一个0~999的整数。

是多少呢:78
再大一点。
是多少呢:500
再小一点。
是多少呢:250
再小一点。
是多少呢:125
再小一点。
是多少呢:60
再大一点。
是多少呢:100
再小一点。
是多少呢:80
回答正确。

 

猜数游戏,随机目标数字,直到猜中退出

标签:生成   scan   span   lse   std   code   rand   div   while   

原文地址:https://www.cnblogs.com/sea-stream/p/11037442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!