1、while循环: ''' 猜字游戏 ''' import random number = random.randint(1,101) jishu = 0 while 1: num = int(input('请输入一个数字:')) if num > number: print('小一点') eli ...
分类:
其他好文 时间:
2021-01-16 11:55:22
阅读次数:
0
一、在一个vector后面追加另一个vector 1 std::vector<int> vec1; 2 std::vector<int> vec2; 3 vec1.insert(vec1.end(), vec2.begin(), vec2.end()); ...
分类:
编程语言 时间:
2021-01-16 11:46:34
阅读次数:
0
Spring定义了多种作用域,可以基于一下作用域创建bean: 单例(Singleton):在整个应用中,只创建一个bean实例。默认这种。 原型(Prototype):每次注入获取通过上下文获取时,创建一个新的bean实例。 会话(Session):在web应用中,为每个会话创建一个bean实例。 ...
分类:
其他好文 时间:
2021-01-15 12:00:25
阅读次数:
0
Exchange2016日志路径 邮件跟踪日志: C:\Program Files\Microsoft\Exchange Server\V15\TransportRoles\Logs\MessageTracking ...
分类:
其他好文 时间:
2021-01-15 11:53:30
阅读次数:
0
yarn add mobile-detect -S import MobileDetect from 'mobile-detect' // alert("进来了") var userAgent = navigator.userAgent;//获取userAgent信息 console.log(use ...
分类:
移动开发 时间:
2021-01-15 11:40:37
阅读次数:
0
用mybatis进行一个修改操作的时候,int age 我并没没有给它赋值,执行完成修改后发现原有的age的值修改为0, 先看看mapper.xml里面的sql <update id="updateUser" parameterType="u"> update t_user set <if test ...
分类:
其他好文 时间:
2021-01-14 11:26:28
阅读次数:
0
题目 1 class Solution { 2 public: 3 int sum = 0; 4 int rangeSumBST(TreeNode* root, int low, int high) { 5 dfs(root,low,high); 6 return sum; 7 } 8 void d ...
分类:
其他好文 时间:
2021-01-14 11:04:51
阅读次数:
0
JavaScript function 常用的几种写法 函数可以通过声明定义,也可以是一个表达式。 函数声明: function functionName(parameters) { 执行的代码 } 函数表达式: var x = function (a, b) {return a * b}; 写法1 ...
分类:
编程语言 时间:
2021-01-14 10:59:46
阅读次数:
0
Windows: 在 C:\Users\用户名 下面新建一个pip目录,在该目录下面新增 pip.ini 文件,文件的内容如下 Linux: vim ~/.pip/pip.conf [global] index-url = http://mirrors.aliyun.com/pypi/simple/ ...
分类:
其他好文 时间:
2021-01-14 10:43:31
阅读次数:
0
.condarc内容 channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ - https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge - ...
分类:
其他好文 时间:
2021-01-14 10:38:30
阅读次数:
0