纪念第一次写博客
2019 04 07
第一次写博客就记录最基础的c语言下的利用循环 使用时间戳的猜数字游戏
vs 实现
#define _crt_secure_no_warnings // vs 下的宏定义 (scanf)
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include <time.h>
int menu() {
int choice = 0;
printf("1,游戏开始\n");
printf("0,游戏结束\n");
scanf("%d", &choice);
return choice;
}
void game() {
//加入时间戳 保证取到随机数
srand((unsigned int)time(0)); //(unsigned int)类型的强制转换
int result = rand() % 100 + 1;//产生随机数0-100
while (1) {
printf("你要猜的数字\n");
int num = 0;
scanf("%d", &num);
if (num > result) {
printf("高了\n");
}
else if (num < result) {
printf("低了\n");
}
else {
printf("恭喜你 猜中了\n");
break;
}
}
}
int main()
{
while (1) {
int choice = menu();
if (choice == 1) {
printf("游戏开始\n");
game();
}
else {
printf("good bye \n");
break;
}
}
system ("pause");
return 0;
}
上一篇: PHP 过滤页面中的BOM(实现代码)
下一篇: PHP删除HTMl标签的三种解决方法