参考链接地址:http://www.kanmenzhu.com/?p=119 对于含有特殊字符的http请求地址解决方法: 如:http:127.0.0.1/api/download/{imei}/{deviceType/{version}} 1.如下图,添加用户自定义变量放入url地址(参考自定义 ...
分类:
其他好文 时间:
2020-05-01 16:21:08
阅读次数:
209
cmake_minimum_required(VERSION 3.5) project(Triangle) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) # OPENGL find_package(OpenGL REQU ...
分类:
其他好文 时间:
2020-04-30 15:40:50
阅读次数:
98
九九乘法表 public class Nn { public static void main(String[] args) { for (int j = 1; j <= 9; j++) { for (int i = 1; i <=j; i++) { System.out.print(i+"*"+j ...
分类:
其他好文 时间:
2020-04-27 13:47:33
阅读次数:
192
Given a string, remove all leading/trailing/duplicated empty spaces. Assumptions: The given string is not null. Examples: “ a” --> “a” “ I love MTV ” ...
分类:
其他好文 时间:
2020-04-26 10:56:45
阅读次数:
82
bugku love 无壳 但是我执行失败了,所以直接放到IDA里,shift+f12 查找字符串 有很明显的base64加密痕迹 基本上确定是一个反解 出flag的题目 uploading image 426096.png strncmp函数: strncmp函数为字符串比较函数,字符串大小的比较 ...
分类:
其他好文 时间:
2020-04-26 01:36:42
阅读次数:
89
while (live){ # nature # -animal # Divinity # -love # Target # Find the essence # Use the brain # Use the eyes # Use hands # Use hearing # Use touch # ...
分类:
其他好文 时间:
2020-04-25 22:03:01
阅读次数:
68
while 循环 while true: 这是执行“真” 的代码 else: 这是执行“假”的代码 当条件判断结果为真时,将循环执行为真的代码,直到结果为假时,结束循环。 实例: #!/usr/bin/env python #-*- coding:utf-8 -*- #Author:Love Dah ...
分类:
其他好文 时间:
2020-04-25 12:52:02
阅读次数:
93
自创函数 C语言提供了大量的库函数: 比如 stdio.h 提供输出函数 自定义函数的一般形式: 注意: [] 包含的内容可以省略,数据类型说明省略,默认是 int 类型函数; 参数省略表示该函数是无参函数,参数不省略表示该函数是有参函数; 函数名称遵循标识符命名规范; 自定义函数尽量放在 main ...
分类:
编程语言 时间:
2020-04-23 20:59:39
阅读次数:
73
参考资料 http://redisdoc.com/ http://redis.io/commands 连接操作相关的命令 ping:测试连接是否存活如果正常会返回 pong echo:打印 select:切换到指定的数据库,数据库索引号 index 用数字值指定,以 0 作为起始索引值 quit:关 ...
分类:
其他好文 时间:
2020-04-23 12:37:07
阅读次数:
76
输入三角形或者长方形边长,计算其周长和面积并输出 1 //输入三角形或者长方形边长,计算其周长和面积并输出 2 using System; 3 4 namespace tur1_1 5 { 6 class Program 7 { 8 static double calTriangleArea(dou ...