<!DOCTYPE html><html><head><title>sha1、base64、ase加密</title><meta charset="utf-8" ><meta name="renderer" content="webkit"><meta name="author" content=" ...
分类:
其他好文 时间:
2019-05-27 11:50:47
阅读次数:
343
此函数可读取整行,包括前导和嵌入的空格,并将其存储在字符串对象中。getline 函数如下所示: getline(cin, inputLine); 其中 cin 是正在读取的输入流,而 inputLine 是接收输入字符串的 string 变量的名称。下面的程序演示了 getline 函数的应用: ...
分类:
其他好文 时间:
2019-05-26 18:25:36
阅读次数:
113
2018 2019 2 20165219《网络对抗技术》Exp9 Web安全基础 一 实验内容 WebGoat配置 进入https://github.com/WebGoat/WebGoat/releases?after=8.0.0网站 下载 webgoat container 7.0.1 war e ...
分类:
Web程序 时间:
2019-05-26 18:05:53
阅读次数:
133
异常的概念 捕获异常 异常的传递 抛出异常 异常的概念 程序在运行时,如果 Python 解释器 遇到 到一个错误,会停止程序的执行,并且提示一些错误信息,这就是 异常 程序停止执行并且提示错误信息 这个动作,我们通常称之为:抛出(raise)异常 捕获异常 1、简单的捕获异常语法 在程序开发中,如 ...
分类:
编程语言 时间:
2019-05-26 15:59:43
阅读次数:
139
count = 1 flag = True while flag: print(count) count += 1 ''' # +=: count = count + 1 ''' if count == 101: flag = False count = 1 while count 2,type(1... ...
分类:
编程语言 时间:
2019-05-26 11:10:21
阅读次数:
467
html最主要的三点: 1.标签的写法、用法 <标签名 属性名1="属性值1" 属性名2="属性值2">内容</标签名> 比如:<div id="a" class="b">就像这个</div> 2.正确嵌套 将一个完整的标签当做另一个标签的内容 3.标签特性 行标签:不能设置宽高,大小随内容变化,默 ...
分类:
Web程序 时间:
2019-05-26 00:11:24
阅读次数:
165
Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum pro ...
分类:
其他好文 时间:
2019-05-24 18:45:09
阅读次数:
116
题意:小B有一个序列,包含N个1~K之间的整数。他一共有M个询问,每个询问给定一个区间[L..R],求Sigma(c(i)^2)的值,其中i的值从1到K,其中c(i)表示数字i在[L..R]中的重复次数。小B请你帮助他回答询问。 就是求区间不同数字个数的平方和 注意平方数可以拆开从1-n 递推。。。 ...
分类:
编程语言 时间:
2019-05-24 12:41:52
阅读次数:
113
<form> 你爱好的运动是? <input type="checkbox" id="hxy"/>全选/不全选 <br /> <input type="checkbox" name="hxy" />1 <input type="checkbox" name="hxy" />2 <input type ...
分类:
Web程序 时间:
2019-05-24 00:48:03
阅读次数:
123
setting: STATIC_URL = '/static/' # 上传图片的路径 UPLOAD_ROOT = os.path.join(BASE_DIR,'upload') STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static'), ] STAT ...
分类:
其他好文 时间:
2019-05-23 23:18:01
阅读次数:
149