Sub auto_open() Call runtimer '打开文档时自动运行 End Sub Sub runtimer() Application.OnTime Now + TimeValue("00:00:05"), "saveit" ' Now + TimeValue("00:00:55") ...
分类:
编程语言 时间:
2020-01-29 12:33:36
阅读次数:
639
Excel can sort records according to any column. Now you are supposed to imitate this function. Input Specification: Each input file contains one test ...
分类:
其他好文 时间:
2020-01-28 23:03:34
阅读次数:
83
import time # print(time.time()) # time.sleep(3) # print(help(time)) # print(time.gmtime()) # 中国24个时区 北京+8 结构化时间time.struct_time(tm_year=2020, tm_mon= ...
分类:
其他好文 时间:
2020-01-28 17:33:42
阅读次数:
73
链接: https://codeforces.com/problemset/problem/915/E 题意: This year Alex has finished school, and now he is a first year student of Berland State Univer ...
分类:
其他好文 时间:
2020-01-28 15:47:37
阅读次数:
78
题解 now - 当前位的数值 left - 在now左边的所有数字 right - 在now右边的所有数字 mul - right的数量级,如 10,100,100 ① 如果 now == 0 ,当now可以为1时,左边的数值必须为(0 ~ (left-1)),右边的数值可以是 0 ~ 999… ...
分类:
其他好文 时间:
2020-01-27 19:32:46
阅读次数:
71
1,shutdown命令 shutdown 【选项】 时间 选项 : -c 取消前一个关机命令 -h 关机 -r 重启 例如: shutdown -r now (现在重启) 2,其他关机命令 1,halt 2,poweroff 3,init 0 3,其他重启命令 1,reboot 2,init 6 ...
分类:
系统相关 时间:
2020-01-27 09:21:57
阅读次数:
93
``` '; require('reusable.php'); echo 'The script will end now.'; /* there are three situations here 1. if the reusable.php are those codes, which incl... ...
分类:
Web程序 时间:
2020-01-27 00:16:25
阅读次数:
93
Server层,选项持久化 mysql> show variables like '%max_connections%'; + + + | Variable_name | Value | + + + | max_connections | 512 | | mysqlx_max_connections ...
分类:
数据库 时间:
2020-01-26 11:50:42
阅读次数:
115
datetime.datetime.now()获取当前日期和时间 datetime.datetime(2019,9,30,22,22,0) 构造日期和时间函数 fromtimestamp() 可以将时间戳转换成 datetime 对象 strptime()和strftime()函数 strptime ...
分类:
编程语言 时间:
2020-01-25 23:41:31
阅读次数:
143
和数学相关 1,java.lang.Math类 abs(x):求绝对值 sqrt(x):求平方根 pow(x,y):求x的y次方 ceil(x):向上取整 floor(x):向下取整 round(x):四舍五入 random():得到[0,1)范围的随机值 max(x,y):求x,y的最大值 min ...
分类:
编程语言 时间:
2020-01-25 23:34:49
阅读次数:
96