https://www.luogu.com.cn/problem/P1873 #include<bits/stdc++.h> using namespace std; int n, m, a[1000005], max_h=-1; bool check(int h){ long long sum=0 ...
分类:
其他好文 时间:
2020-06-24 21:58:12
阅读次数:
53
在线下载JDK 命令: wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/ja ...
分类:
系统相关 时间:
2020-06-24 21:53:24
阅读次数:
204
用Map+函数式接口来实现策略模式 目前在魔都,贝壳找房是我的雇主,平时关注一些 java 领域相关的技术,希望你们能在这篇文章中找到些有用的东西。个人水平有限,如果文章有错误还请指出,在留言区一起交流。 本文已投稿至公众号 Hollis 原文链接:https://mp.weixin.qq.com/ ...
分类:
其他好文 时间:
2020-06-24 16:13:20
阅读次数:
44
0x00 前言 在oracle注入时候出现了数据库报错信息,可以优先选择报错注入,使用报错的方式将查询数据的结果带出到错误页面中。 使用报错注入需要使用类似 1=[报错语句],1>[报错语句],使用比较运算符,这样的方式进行报错注入(MYSQL仅使用函数报错即可),类似mssql报错注入的方式。 判 ...
分类:
其他好文 时间:
2020-06-24 12:07:39
阅读次数:
90
<input type="radio" > 表示单选框 示例 1 : 单选框 两个单选,都可以同时选中。 为了达到,同一时间,只能选中其一的效果,需要使用分组 单选1 <input type="radio" > 单选2 <input type="radio" > 示例 2 : 默认选中 默认选中 < ...
分类:
Web程序 时间:
2020-06-24 09:14:26
阅读次数:
1589
<input type="checkbox"> 即表示复选框 示例 1 : 复选框 <p>今天晚上做什么?</p> 学习java<input type="checkbox" value="学习java" > <br/> 东京热<input type="checkbox" checked="check ...
分类:
Web程序 时间:
2020-06-24 09:12:38
阅读次数:
293
打开file==>settings==>HTTP Proxy修改为如下配置确定即可 ...
分类:
编程语言 时间:
2020-06-23 15:46:53
阅读次数:
70
实现登陆功能的单元测试 验证参数有效性函数 def login_check(username, password): """ :param username: 登陆用户名 :param password: 登陆密码 :return: """ if 6 <= len(password) <= 18: ...
分类:
其他好文 时间:
2020-06-23 15:34:05
阅读次数:
57
ASP.NET's Data Storage Objects Introduction In this brief tutorial, we'll look at five different ASP.NET objects we can use to store data. Two of thes ...
分类:
Web程序 时间:
2020-06-23 15:18:44
阅读次数:
71
一:vue是单文件组件导:之前注册组件有什么缺点?1-缺乏语法高亮2-格式不好整体3-没有专门的写css代码等等参考:vue=>工具=>单文件组件什么是单文件组件?后缀为.vue的文件单文件组件的三个组成部分(代码块:scaffold自动提示)template(模板结构)script组件的代码逻辑style样式注意点:单文件组件,无法直接在浏览器中使用,必须经过webpack这种打包工
分类:
其他好文 时间:
2020-06-22 09:34:36
阅读次数:
64