用C语言编写的简单的猜数字游戏
程序员文章站
2022-05-12 20:24:21
#include
#include
#include
int main()...
#include <stdio.h> #include <time.h> #include <stdlib.h> int main() { int random = 0; int input = 0; int start = 1; while (start) { printf("*********************\n"); printf("**1 start 0.exit**\n"); printf("*********************\n"); printf("请选择:>"); scanf("%d", &start); switch (start) { case 1: { srand((unsigned)time(NULL)); random = rand()%100; while (1) { printf("请输入你猜的数:>"); scanf("%d", &input); if (input > random) { printf("猜大了\n"); } else if (input < random) { printf("猜的太小了\n"); } else { printf("你好厉害啊\n"); break; } } break; } case 0: { printf("感谢使用猜数字游戏,bye bye\n"); exit(0); break; } default: { break; } } return 0; }
推荐阅读
-
用C语言计算简单的数学式子
-
C语言:编写程序数一下 1到 100 的所有整数中出现多少次数字 9
-
用C语言编写的简单的猜数字游戏
-
c语言:编写猜数字小游戏。
-
用C语言编写函数,实现strlen计算字符串长度的功能
-
用C语言实现一款猜数字游戏
-
计算机大一新生的辣鸡c语言程序 猜数字和十个小猪称重
-
有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?用C语言实现
-
用C语言求Sn=a+aa+aaa+aaaa+aaaaa的前5项之和,其中a是一个数字
-
学习笔记:用c语言编写泰勒展开公式myexp()实现math.h.数学函数库中的exp()函数。并与exp()函数做比较。精度相同。