您好,登錄后才能下訂單哦!
今天小編就為大家帶來一篇使用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語言實現猜數字游戲的源碼,代碼詳細清楚,如果在日常工作遇到這個問題,希望你能通過這篇文章解決問題。如果想了解更多相關內容,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。