#题目:输出 9*9 乘法口诀表。 for i in range(1,10): k = '' for j in range(1,i+1): k += '%s * %s = %s '%(i,j,i*j) print(k) ...
分类:
编程语言 时间:
2018-04-29 14:27:08
阅读次数:
175
1.android开发百度地图定位,我怎么老是定到几内亚湾 权限问题,首先安卓6.0之后的Android的系统需要动态申请权限。 然后百度地图的sdk的不同功能,申请的权限不同,每个功能都需要看官方文档 2.百度地图一体化包中libBaiduMapSDK_base_v4_3_1.so不支持64-bi ...
分类:
其他好文 时间:
2018-04-29 14:27:00
阅读次数:
161
前言:因为有一段时间没操作AD了,很多基本功能都忘了,基本又是一个现学,不断地去找资料,却不尽人意,没能找到符合我自己想要的,而且和我之前的操作也不太一样,为此留下笔记,供日后查阅,如有错,请指出。 AD导出元件清单操作: 第一步:在原理图里点击上面的操作栏Reports→Bill of Mater ...
分类:
其他好文 时间:
2018-04-29 14:26:53
阅读次数:
255
package com.lsw.classloader; class Parent{ public static int a=3; public int b = 4; static { System.out.println("Parent static block"); }}public class ...
分类:
其他好文 时间:
2018-04-29 14:26:43
阅读次数:
126
进入官网www.mysql.com ,选择downloads; 选择 Community 再选择MySQL community server 选择5.7的版本,这个看自己选择,有问题看标题 选择5.7.22版本,windows系统类型 选择下载包,并点击dawnload 无需注册,点击下载 下载后安... ...
分类:
数据库 时间:
2018-04-29 14:26:37
阅读次数:
245
SCtring str(_T("你好!")); USES_CONVERSION; char* p = T2A(str.GetBuffer(0)); str.ReleaseBuffer(); 找了好久,终于用这个方法做到了,这个是微软现成的转换函数。在做mfc与php socket中文字符传输时用到的 ...
分类:
其他好文 时间:
2018-04-29 14:26:28
阅读次数:
114
#include #define PI acos(-1.0) #define mem(a,b) memset((a),b,sizeof(a)) #define TS printf("!!!\n") #define pb push_back #define inf 1e9 //std::ios::sy... ...
分类:
其他好文 时间:
2018-04-29 14:26:14
阅读次数:
191
#题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? count = 0 for i in range(1,5): for j in range(1,5): for k in range(1,5): if i != j and j != k and i != k: p... ...
分类:
编程语言 时间:
2018-04-29 14:26:07
阅读次数:
161
A sequence of $n$ integers $a_1, a_2, \dots, a_n$ is called a peak, if and only if there exists exactly one integer $k$ such that $1 a_i$ for all $k ...
分类:
其他好文 时间:
2018-04-29 14:26:00
阅读次数:
311
http://deeplearning.cs.cmu.edu/recitations/rec8.attention.pdf https://github.com/cmudeeplearning11785/deep-learning-tutorials/blob/master/recitation-8 ...
分类:
其他好文 时间:
2018-04-29 14:25:50
阅读次数:
208
修改/etc/ssh/sshd_config文件,找到 ClientAliveInterval 0和ClientAliveCountMax 3并将注释符号("#")去掉, 将ClientAliveInterval对应的0改成60, ClientAliveInterval指定了服务器端向客户端请求消息 ...
分类:
系统相关 时间:
2018-04-29 14:25:43
阅读次数:
190
use BalloonShop select * from Product --20个字,1, 5 CREATE PROCEDURE GetProductsOnCatalogPromotion (@DescriptionLength INT,--描述信息长度 @PageNumber INT, -- ... ...
分类:
其他好文 时间:
2018-04-29 13:39:21
阅读次数:
131
resolver:指定DNS服务器。 proxy_pass:请求到达nginx后,nginx后去访问proxy_pass设置的地址,并原路返回内容。 ...
分类:
其他好文 时间:
2018-04-29 13:39:14
阅读次数:
180
报错如下: 原因:( ) { } [ ] 不对称,或者用错了。 ...
分类:
其他好文 时间:
2018-04-29 13:39:08
阅读次数:
1199
判断字符串是否以某个子字符串开头。 比如字符串“abcdefg”.startWith("abc") 判断结果是true,因为它是以 abc 开头的。 ...
分类:
编程语言 时间:
2018-04-29 13:38:57
阅读次数:
135
(1) DAU : daily active user,日活跃用户数量 (2) MAU : 月活跃用户量 (3) ARPU : (Average Revenue Per User)即每用户平均收入,用于衡量电信运营商和互联网公司业务收入的指标。 (4) KPI :关键绩效指标法,是企业绩效考核的方法 ...
分类:
Web程序 时间:
2018-04-29 13:38:50
阅读次数:
260