Arduino IDE开发ESP8266-01S连接MQTT服务器 控制继电器点了LED ...
分类:
其他好文 时间:
2019-09-22 14:50:59
阅读次数:
123
int dp[maxn][maxn]; signed main() { /*n个盘 m座塔*/ int n,m; n=31,m=31; /*初始化动规边界*/ dp[2][1]=1;//初始化两座塔的情况 for(int i=3; i<=m; ++i) dp[i][1]=1;//初始化只有一个盘的情... ...
分类:
其他好文 时间:
2019-09-22 12:58:30
阅读次数:
94
泛微E-cology OA /weaver/代码执行漏洞 泛微e-cology OA Beanshell组件远程代码执行 http://127.0.0.1/weaver/bsh.servlet.BshServlet 若存在如上页面,则用下面数据包进行测试。 等有时间写个脚本。 ...
分类:
其他好文 时间:
2019-09-22 12:45:58
阅读次数:
118
第二章 变量与基本类型 1、基本内置类型 C++定义了一套包括算术类型和空类型在内的基本数据类型 算术类型:整型和浮点型,包括带符号类型(signed)和无符号类型(unsigned),带符号类型可以表示正数、负数和零,而无符号类型只能表示大于等于零的数 布尔类型:true 或者false 2、变量 ...
分类:
编程语言 时间:
2019-09-22 11:06:06
阅读次数:
79
printk(KERN_CRIT"frames[frame_idx].width:%d, frames[frame_idx].height:%d\n",frames[frame_idx].width, frames[frame_idx].height); 但为什么一个printk会造成kernel ...
分类:
其他好文 时间:
2019-09-21 01:16:34
阅读次数:
124
Given a 32-bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: Note:Assume we are dealing with an environment which cou ...
分类:
其他好文 时间:
2019-09-19 23:36:49
阅读次数:
95
D. Colorful PointsYou are given a set of points on a straight line. Each point has a color assigned to it. For point a, its neighbors are the points w ...
分类:
其他好文 时间:
2019-09-18 10:40:08
阅读次数:
92
最近在做银联的一个接口,用到RSA签名,悲剧来了,.net用的RSA密钥格式和JAVA用的不一样 .net为XML格式 1 <RSAKeyValue><Modulus>53KnujHcV0962zoLigW8d4AUb+1TS3LiySGrXhF5FgjUQhLzI6PCM/hyHPhUat6MTc ...
分类:
编程语言 时间:
2019-09-16 14:09:34
阅读次数:
86
一 需求分析 使用C或Java语言完成一个自动生成四则运算试题的程序 二 功能设计 (1)自动生成10道100以内的2个操作数的四则运算算式(+ - * /),要求运算结果也在100以内 (2)剔除重复算式。 2 + 3 = 和 2 + 3 = 是重复算式 2 + 3 = 和 3 + 2 = 不属于 ...
分类:
其他好文 时间:
2019-09-15 19:27:45
阅读次数:
106
A. 2:40:11(-7) solved by zcz 通过旋转使得抓人的在左下角,逃得在右上角 结论是逃得一定在右上 或者 右下 左上被抓住,找到规律枚举一下即可 #include<iostream> #include<cstring> #include<cstdio> #include<alg ...
分类:
其他好文 时间:
2019-09-14 19:11:21
阅读次数:
125