会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
贞德窦
博客园
首页
新随笔
联系
订阅
管理
2021年9月22日
基于C语言控制台输出的扫雷游戏2.0版
摘要: 1.修改了开局踩雷的情况 2.修改了16*16和16*30棋盘无法对齐情况 game.h 1 #define _CRT_SECURE_NO_WARNINGS 2 #define ROW 9 //9*9 16*16 16*30 3 #define COL 9 4 #define ROWS ROW+2
阅读全文
posted @ 2021-09-22 10:39 贞德窦
阅读(62)
评论(0)
推荐(0)
2021年9月15日
基于C语言控制台输出的扫雷游戏
摘要: test.c 1 #define _CRT_SECURE_NO_WARNINGS 2 3 #include "game.h" 4 5 void menu() 6 { 7 printf("************************\n"); 8 printf("***** 1.开始游戏 ****
阅读全文
posted @ 2021-09-15 23:01 贞德窦
阅读(78)
评论(0)
推荐(0)
2021年8月30日
井字棋游戏
摘要: test.c 1 #define _CRT_SECURE_NO_WARNINGS 2 3 #include "game.h" 4 //开始菜单 5 void start() 6 { 7 printf("****************************\n"); 8 printf("****
阅读全文
posted @ 2021-08-30 13:15 贞德窦
阅读(83)
评论(0)
推荐(0)
2021年8月9日
猜数字小游戏
摘要: 1 #define _CRT_SECURE_NO_WARNINGS 2 3 #include <stdio.h> 4 #include <stdlib.h> 5 #include <math.h> 6 #include <time.h> 7 8 //简易的游戏菜单 9 void start() 10
阅读全文
posted @ 2021-08-09 10:12 贞德窦
阅读(111)
评论(0)
推荐(0)
2021年7月25日
关于vs c++中错误error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details
摘要: 在使用vsc++2013进行编译时出现了 错误 1 error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _
阅读全文
posted @ 2021-07-25 11:16 贞德窦
阅读(689)
评论(0)
推荐(0)
公告