赞
踩
设计条件
- #define _CRT_SECURE_NO_WARNINGS 1
- #include <stdio.h>
- #include <windows.h>
- #include <stdlib.h>
- #include <time.h>
-
- void menu() //游戏菜单
- {
- printf("********************************\n");
- printf("**** 欢迎来到猜数字小游戏 ****\n");
- printf("**** 范围是1-100之间 ****\n");
- printf("**** ****\n");
- printf("**** 按1开始游戏 ****\n");
- printf("**** 按0结束游戏 ****\n");
- printf("********************************\n");
- printf("\n");
- }
-
- void game() //游戏本体
- {
- //1.生成随机数
- int ret = rand()%100+1; //rand返回0-32767之间的数字; %100的余数是0-99,+1,范围即1-100
- //printf("%
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。