91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言實現猜數字游戲源碼

發布時間:2020-05-22 11:24:32 來源:億速云 閱讀:273 作者:Leah 欄目:編程語言

今天小編就為大家帶來一篇使用C語言實現猜數字游戲的文章。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void menu()
{
    printf("***************************\n");
    printf("*******   1.play    *******\n");
    printf("*******   0.exit    *******\n");
    printf("***************************\n");
}
void game()
{
    int number = rand() % 100 + 1;
    int input = 0;
    while (1)
    {
        printf("請輸入猜的數字\n");
        scanf("%d", &input);
        if (input > number)
        {
            printf("提示!猜大了\n");
        }
        else if (input < number)
        {
            printf("提示!猜小了\n");
        }
        else
        {
            printf("恭喜你,猜對了");
            break;
        }
    }
}
int main()
{
    system("color 7F");//78
    int input = 0;
    srand((unsigned)time(NULL));
    do
    {

        menu();
        printf("請選擇->");
        scanf("%d", &input);
        switch(input)
        {
        case 1:game();
        case 0:break;
        dafult:printf("選擇錯誤,請重新選擇\n");
        }
    } while (input);
    return 0;
}

以上就是C語言實現猜數字游戲的源碼,代碼詳細清楚,如果在日常工作遇到這個問題,希望你能通過這篇文章解決問題。如果想了解更多相關內容,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泽州县| 银川市| 民勤县| 花莲县| 昆山市| 河北区| 宜章县| 和林格尔县| 屯昌县| 花莲市| 平阳县| 庄浪县| 离岛区| 福安市| 南溪县| 台中县| 庄河市| 辽中县| 樟树市| 溆浦县| 沅江市| 麻江县| 黔江区| 雅安市| 海丰县| 汨罗市| 崇仁县| 化隆| 兴业县| 清水县| 宁陕县| 宜君县| 汨罗市| 余姚市| 藁城市| 广饶县| 都兰县| 固镇县| 浦北县| 松桃| 松原市|