摘要: 头文件:#include <cmath>fmod() 用来对浮点数进行取模(求余),其原型为: double fmod (double x,double y);注意:y不能为0; 例如:4.2对2取模位0.2 4.3对2.1取模位0.1 下面附上C++代码 #include<iostream> #i 阅读全文
posted @ 2020-06-01 10:07 HunterK 阅读(570) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 登陆官网,下载最新无线网卡驱动 网址:https://think.lenovo.com.cn/support/driver/newdriversdownlist.aspx?categoryid=13252&CODEName=&SearchType=1&wherePage=1&Search 阅读全文
posted @ 2020-03-27 17:16 HunterK 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 工程属性页 ->Debugging->Debugger Type, 设置为 'Managed Only' 环境: Visual Studio 2008 阅读全文
posted @ 2020-03-03 10:18 HunterK 阅读(244) 评论(0) 推荐(0) 编辑
摘要: #include <graphics.h> //引用图形库 #include <conio.h> void main() { initgraph(640, 480); //和TC有区别 circle(200, 200, 100); //画圆, 圆心(200,200),半径 100 getch(); 阅读全文
posted @ 2020-02-21 14:56 HunterK 阅读(1958) 评论(0) 推荐(0) 编辑
摘要: 请查看如下官网的回复 https://support.microsoft.com/zh-cn/help/2752583/you-cannot-change-the-location-of-the-offline-outlook-data-file-ost-in 阅读全文
posted @ 2020-01-02 13:45 HunterK 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Mapped Drive Connection to Network Share May Be Lost Applies to: Microsoft Windows Server 2003 Standard Edition (32-bit x86)Microsoft Windows Server 2 阅读全文
posted @ 2019-11-14 18:03 HunterK 阅读(747) 评论(0) 推荐(0) 编辑
摘要: 重装WINDOWS7 64bit 系统后, 无法安装驱动, 显示 The procedure entry point AddDllDirectory could not be located in the dynamic link library KERNEL32.dll 解决方法: 安装补丁 KB 阅读全文
posted @ 2019-11-12 16:05 HunterK 阅读(3494) 评论(0) 推荐(0) 编辑
摘要: 解决方法: 通过PE系统,打开电脑C盘,使用windows\system32\config\regback下的system文件替换掉windows\system32\config下的system文件, 重启电脑即可。 阅读全文
posted @ 2019-11-04 15:38 HunterK 阅读(2045) 评论(0) 推荐(0) 编辑
摘要: 通过高级启动项禁用的不是永久的。 永久禁用数字签名方法:1、右键点击开始按,选择“命令提示符(管理员)”;2、输入或复制 bcdedit.exe /set nointegritychecks on (注意:exe 与 / 之间 有一个空格。回车;命令执行完毕就行了。要恢复签名,就在“命令提示符(管理 阅读全文
posted @ 2019-09-20 14:26 HunterK 阅读(25923) 评论(0) 推荐(0) 编辑
摘要: 刚才还编译正常, 突然出现这样的报错. 在网上找了一下, 说是 重启电脑也可以解决. 也可以安装下面的补丁彻底解决. 安装补丁: VS90SP1-KB976656-x86.exe即可解决 阅读全文
posted @ 2019-09-16 11:42 HunterK 阅读(247) 评论(0) 推荐(0) 编辑