链接
OJ链接:传送门
AC代码
#include <iostream>using namespace std;int n, m;int dx 0, dy 0;int main() {cin >> n >> m;for (int i 0; i < n; i) {int x, y;cin >> x >> y;dx x;dy y;}for (int i 0; i < m; i) {i…
Linux查看本机IP地址
命令
ipconfig可能会遇到的问题
Command ‘ifconfig’ not found, but can be installed with:
Command ifconfig not found, but can be installed with:sudo apt install net-tools解决办法
安装net-tools再执行ipconfig
安装网络工具
sudo apt i…
Web service是一个平台独立的,松耦合的,自包含的、基于可编程的web的应用程序,可使用开放的XML标准来描述、发布、发现、协调和配置这些应用程序,用于开发分布式的互操作的应用程序。webservice用的是soap协议。 客户通过发送请求…
sql union 注入
一, 参数分类
根据可控参数的类型不同, 对注入类型分类:
1. 数字型select * from table where id1
2. 字符型select * from table where usernameroot
3. 搜索型select * from table where id like %root%
4. 关于注释:注入时, 在查询参数中使用注释需要url编…