s = input('明文:') for c in s: print(chr(ord(c)+3),end='') 明文:i love you l#oryh#|rx Process finished with exit code 0 s = input('密文:') for c in s: print... ...
分类:
其他好文 时间:
2018-05-23 22:07:55
阅读次数:
144
In this lesson I show how to use webpack to code split based on route in VueJS. Code splitting is a useful tool to help eliminate unused code and only ...
分类:
Web程序 时间:
2018-05-23 22:04:12
阅读次数:
328
#!/bin/sh # this script can make certificate of each line in file you point which one! if [ $# -ne 1 ];then echo -e "\033[33m Input your domain's file... ...
分类:
其他好文 时间:
2018-05-23 20:37:32
阅读次数:
189
GDB是GNU开源组织发布的一个强大的UNIX下的程序调试工具,GDB主要可帮助工程师完成下面4个方面的功能: 启动程序,可以按照工程师自定义的要求随心所欲的运行程序。 让被调试的程序在工程师指定的断点处停住,断点可以是条件表达式。 当程序被停住时,可以检查此时程序中所发生的事,并追索上文。 动态地 ...
分类:
数据库 时间:
2018-05-23 20:26:16
阅读次数:
220
From: http://www.martinbroadhurst.com/replacing-all-occurrences-of-a-character-in-a-stdstring.html This can be done using the standard library or Boos ...
分类:
其他好文 时间:
2018-05-23 18:09:00
阅读次数:
172
原文 https://stackoverflow.com/questions/28240528/how-do-i-duplicate-a-resource-reference-in-code-behind-in-wpf ...
NSDictionary/NSMutableDictionary 特点: (1)里存储的东西都是键值对 (2)可以像数组一样快速创建(适用 NSDictionary):@{key1 : value1, (3)快速访问元素:字典名 [key] 比如可以这样为指定 key 赋值: dic [@”key1 ...
分类:
其他好文 时间:
2018-05-23 18:01:57
阅读次数:
232
最近开发过程中遇到一个调用C++ dll失败的问题,抛出异常“尝试读取或写入受保护的内存。这通常指示其他内存已损坏。”, “AccessViolation 0xc0000005”。网上找了一些资料,千篇一律,没能解决问题。由于没办法对dll 进行调试,导致出现什么问题都不清楚。 具体程序是这样的,C ...
分类:
编程语言 时间:
2018-05-23 14:19:29
阅读次数:
365
一。实验结论: 1.ex3: 代码: 运行结果: 2.习题6-17: 习题6-18: 3.Matrix类的定义 Matrix类的实现: 主函数: 运行结果: PS:(1).一张图装不下运行结果,所以运行结果分两张图表示(第一张图的最后两行与第二张图的前两行重合) (2).不知道怎么回事,注释中的汉字 ...
分类:
其他好文 时间:
2018-05-23 13:50:37
阅读次数:
181
Factorial numbers are getting big very soon, you'll have to compute the number of divisors of such highly composite numbers. Input The first line cont ...
分类:
其他好文 时间:
2018-05-23 13:07:44
阅读次数:
180