详情了解:http://topeetboard.com 更多了解:https://arm-board.taobao.com ...
分类:
其他好文 时间:
2017-04-10 10:55:22
阅读次数:
203
There are N students in a class. Some of them are friends, while some are not. Their friendship is transitive in nature. For example, if A is a direct ...
分类:
其他好文 时间:
2017-04-10 00:49:34
阅读次数:
296
像这样是获取不到值的,弹出的消息是 underfined:<html><style type="text/css">input { border: 1px solid #CCCCCC; font-size: 10.5pt; padding: 2px 3px 1px; width: 220px; co ...
分类:
Web程序 时间:
2017-04-09 23:35:02
阅读次数:
287
1.#include #include main() { struct student {int num; char name[20]; char sex; int age; float score; char addr[30]; }; } 2.#include #include main() { ... ...
分类:
其他好文 时间:
2017-04-09 22:36:33
阅读次数:
347
在题中的A*B*C的矩形中,当确定X1,X2,Y1,Y2时,1->z的子矩形的和为 sum[x2][y2][1] -(sum[x1-1][y2][1] + sum[x2][y1-1][1] -sum[x1-1][y1-1][1] + sum[x2][y2][z+1] - sum[x1-1][y2][ ...
分类:
其他好文 时间:
2017-04-09 18:48:08
阅读次数:
154
题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1247 题意:中文题诶~ 思路:(a, b)可以直接到达(a+b, b), (a, a+b), (a-b, b), (a, a-b),显然这样的路径是可逆的。那么要 ...
分类:
其他好文 时间:
2017-04-09 11:59:34
阅读次数:
152
jQuery既然是为了帮助你能从js的繁琐中解脱出来,自然在DOM操作上也有自己的一套。1、修改Text和HTML之前我们提到过,如果用JS的话,你要修改Text或者HTML需要用到其innerHTML和innerText属性,但是放在jQuery里面,你需要用到的是html()方法和text()方... ...
分类:
Web程序 时间:
2017-04-09 11:28:24
阅读次数:
206
作用 简化HTML文件的创建 遇到的问题 1. 在模板中使用 <%= HtmlWebpackPlugin.options.title %> 报错:HtmlWebpackPlugin is undefined HtmlWebpackPlugin => 首字母小写 htmlWebpackPlugin ...
分类:
Web程序 时间:
2017-04-09 10:38:13
阅读次数:
138
A n个数 m 递增的 如果2个数的差大于m 那么前面的字就会消失 问最后有几个字 从后往前走一下 #include<stdio.h> #include<algorithm> #include<stdlib.h> #include<cstring> #include<iostream> #inclu ...
分类:
其他好文 时间:
2017-04-08 22:48:01
阅读次数:
200
不管什么语言,if-else结构,switch-case结构还有while循环,for循环以及循环嵌套都非常重要。知道了解还不够,细节很重要。 让我们来看一JS中的循环有什么特点吧 ...
分类:
Web程序 时间:
2017-04-08 16:17:14
阅读次数:
272