USS的英文全称是什么,请全部小写并使用下划线连接_,并在外面加上PCTF{}之后提交 检测你的搜索引擎使用能力,搜索USS Lab.,知道这是浙江大学的Ubiquitous System Security Lab. 所以得到flag: PCTF{ubiquitous_system_security ...
分类:
其他好文 时间:
2020-11-12 13:35:24
阅读次数:
7
X Window System protocols and architecture In computing, the X Window System (commonly X11 or X) is a network-transparent windowing system for bitmap ...
这次写的是小游戏扫雷,由于时间问题,扫雷的成功失败判断还没有写的很好,只是把大体的思路写出来了。 这次最主要的是有两个类 第一个是地雷类 :lanmine 1 using System; 2 using System.Collections.Generic; 3 using System.Drawi ...
题目链接 题意 给出一个长度为 n 的方块区间[1,n],现在要对这个方块区间染色,有两种要求: 格式:l, r, k。表示区间[l,r]里至少有 k 个方块被染色 格式:l, r, k。表示区间[l,r]之外至少有 k 个方块被染色。 现在给出 n, m1, m2,分别表示有 n 个方块,m1 个 ...
分类:
其他好文 时间:
2020-11-11 16:09:29
阅读次数:
4
在微信中,发送httpclient请求 使用了apache的组件 /** * post请求 * @param url * @param json * @return */ public static JSONObject doPost(String url,JSONObject json){ Clo ...
分类:
微信 时间:
2020-11-11 15:44:03
阅读次数:
19
all < index < ref < eq_ref < const(system) < Null 全表 < index < 辅助索引 < 多表辅助索引 < primary key/unique < Null 查看使用的索引类型 desc select * from test; >>> 可能走的索引 ...
分类:
其他好文 时间:
2020-11-10 11:21:30
阅读次数:
6
Centos7离线安装Redis 参看linux版本信息, # cat /etc/centos-release CentOS Linux release 7.2.1511(Core) 注:CentOS版本要与gcc版本对应 一、安装gcc 1.1建立文件夹/usr/local/gcc 用于存放下载的 ...
分类:
其他好文 时间:
2020-11-10 10:54:16
阅读次数:
5
重载(overloading)(编译期间) 函数或者方法,同名不同参。 在运行的时候,根据引用变量所指向的实际对象的类型来调用方法 主要出现于构造函数,重载体现在一个类中。 public class Overload { public void test(){ System.out.println( ...
分类:
其他好文 时间:
2020-11-10 10:41:52
阅读次数:
4
Scanner对象 通过Scanner类来获取用户的输入。 使用需导入 java.util.Scanner 包。 基本语法: Scanner s = new Scanner(System.in); next() package Scanner; import java.util.Scanner;// ...
分类:
其他好文 时间:
2020-11-08 17:57:08
阅读次数:
30