程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 第一個c語言實現的猜數字游戲

第一個c語言實現的猜數字游戲

編輯:關於C語言

第一個c語言實現的猜數字游戲


 
#include <stdio.h>
#include <Windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <Windows.h>
#include <stdlib.h>
#include <time.h>
void output()
{
    printf("*********************  歡迎玩猜數字游戲   ***********************\n");
    printf("********************* 輸入1進入猜數字游戲 ***********************\n");
    printf("********************* 輸入0退出猜數字游戲 ***********************\n");
}
int main()
{
    int charge = 1;
    while(charge)
    {
        output();
        printf("請選擇>:");
        scanf("%d",&charge);
        switch(charge)
        {
        case 1:
            {
                int value = 0,input = 0;
                srand( (unsigned int)time( NULL ) );
                value = rand()%101;
                while(1)
                {
                    printf("請輸入你猜的數:");
                    scanf("%d",&input);
                    if(input<value)
                    {
                        printf("你答小了\n");  
                    }
                    else if(input>value)
                    {
                        printf("你答大了\n");
 
                    }
                    else 
                    {
                        printf("恭喜你答對了\n");
                        break; 
                    }
                     
                 }
                break;
             }
        default:
            {
                printf("游戲結束\n");
                break;
            }
        }
    }
    system("pause");
    return 0;
 
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved