码迷,mamicode.com
首页 > 其他好文 > 详细

纪念第一次写博客

时间:2019-04-07 22:20:15      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:图片   nbsp   str   clu   srand   fine   bye   printf   choice   

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;
}

 技术图片

纪念第一次写博客

标签:图片   nbsp   str   clu   srand   fine   bye   printf   choice   

原文地址:https://www.cnblogs.com/lc-bk/p/10667170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!