溫馨提示×

溫馨提示×

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

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

C語言實現(xiàn)猜數(shù)字游戲源碼

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

今天小編就為大家?guī)硪黄褂肅語言實現(xiàn)猜數(shù)字游戲的文章。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。

#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("請輸入猜的數(shù)字\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語言實現(xiàn)猜數(shù)字游戲的源碼,代碼詳細清楚,如果在日常工作遇到這個問題,希望你能通過這篇文章解決問題。如果想了解更多相關內(nèi)容,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI