您好,登錄后才能下訂單哦!
今天小編就為大家?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è)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。