#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void fun(int c )
{
srand((unsigned)time(NULL));
int ret = rand() % 100 + 1;
printf("请输入一个数>");
while (1)
{
scanf("%d", &c);
if (c == ret)
{
printf("正确\n");
break;
}
else if (c > ret)
{
printf("猜大了\n");
}
else
{
printf("猜小了\n");
}
}
}
void menu()
{
printf("********************\n");
printf("****游戏开始********\n");
printf("********************\n");
printf("*****请选择*********\n");
printf("********************\n");
printf("****1 游戏开始******\n");
printf("********************\n");
printf("****2 游戏结束******\n");
printf("********************\n");
printf("********************\n");
}
int main()
{
int c = 0;
int num = 0;
int input = 0;
while (1)
{
menu();
printf("请选择\n");
scanf("%d", &input);
switch (input)
{
case 1:
printf("游戏开始\n");
fun( num);
break;
{
case 2:
printf("游戏结束\n");
break;
}
}
//break;
}
printf("%d", c);
system("pause");
return 0;
c语言实现猜数字小游戏
原创
©著作权归作者所有:来自51CTO博客作者这里有酒的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:求一个整数中二进制中1的个数
下一篇:1到1000的水仙花数
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C语言—猜数字小游戏
猜数字小游戏
#include 空指针 随机数 -
c语言:编写猜数字小游戏。
c语言:编写猜数字小游戏。
c语言:编写猜数字小游戏。 -
C语言基础-猜数字小游戏
C语言基础-猜数字小游戏
c语言 c++ 算法 #include 小游戏