#include <cmath> #include <cstdio> #include <iostream> #include <algorithm> using namespace std; const int N = 5000100; int n, m, cnt, fa[N], sum; dou ...
分类:
其他好文 时间:
2020-05-01 16:38:02
阅读次数:
54
1.用户设置 root@host# mysql -u root -p Enter password:******* mysql> use mysql; Database changed mysql> INSERT INTO user (host, user, password, select_pri ...
分类:
数据库 时间:
2020-05-01 16:34:02
阅读次数:
71
#include<stdio.h> #include<string.h> int arr[110]; int sum = 0; int dp[201][402]; int num[201]; int main() { int x; char ch; int len=0; while(~scanf(" ...
分类:
移动开发 时间:
2020-04-30 23:31:44
阅读次数:
121
我要从一个页面跳到另一个页面,同时实现传值 网上说了很多兄弟传值,什么bus,不管用,反正我试不灵,也可能我的方法不对 从creatTable传值传到Props那个, 1.这个creatTable中的一个method中的一个方法里的部分 this.$router.push({ path: "crea ...
分类:
其他好文 时间:
2020-04-30 19:12:34
阅读次数:
60
1 函数 默认参数 定义默认参数的时候,默认参数必须要在非默认参数的后面。 function person(name,age=18,gender='男'){ console.log(name,age,gender); } function person(name,{age=18,gender='女' ...
分类:
其他好文 时间:
2020-04-30 15:44:49
阅读次数:
61
https://zhuanlan.zhihu.com/p/77043332 一,multi_complie 还是 shader_feature shader_feature 和 multi_complie 是两个很相似的预编译指令,在Editor模式下,他们是几乎没有区别的。 共同点是: 声明Key ...
分类:
编程语言 时间:
2020-04-29 23:10:15
阅读次数:
179
import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.client.config.RequestConfig;import org.apache.http.client ...
分类:
Web程序 时间:
2020-04-29 21:50:26
阅读次数:
166
问题:从键盘输入一个整数n(1≤n≤9),打印出指定的数字图形。如下所示,输入5,打印出: 1 121 12321 1234321 123454321 1234321 12321 121 1 #include <stdio.h> void main() { int i,j,n; scanf("%d" ...
分类:
编程语言 时间:
2020-04-29 20:23:51
阅读次数:
91
synchronzied 关键字应该是 Java 并发编程中最重要的内容了,甚至没有之一。在 JDK6 以前,synchronized 关键字还代表着一把重量级锁,因此在 JUC 包里还推出了 Lock 类来替代 synchronized,不过 JDK6 以后的 synchronized 经过优化, ...
分类:
编程语言 时间:
2020-04-29 14:48:07
阅读次数:
91
[BJDCTF2020]Cookie is so stable 进入环境后看到有hint,点击之后查看源代码 提示我们cookie有线索 flag页面是: 需要输入一个username,或许这道题目是cookie伪造,随便输入一个username 输入的结果显示在了页面上,很容易能想到注入,抓包 c ...
分类:
其他好文 时间:
2020-04-29 14:33:01
阅读次数:
103