码迷,mamicode.com
首页 >  
搜索关键字:101 connections now    ( 6430个结果
VBA:用代码操作代码
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
PAT Advanced 1028 List Sorting (25分)
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
time模块
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
Educational Codeforces Round 36 (Rated for Div. 2) E. Physical Education Lessons(动态开点线段树)
链接: 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
PAT (Advanced Level) 1049 Counting Ones
题解 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
Linux关机重启命令
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
PHP Function
``` '; 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
MySQL8.0新特性【转】
Server层,选项持久化 mysql> show variables like '%max_connections%'; + + + | Variable_name | Value | + + + | max_connections | 512 | | mysqlx_max_connections ...
分类:数据库   时间:2020-01-26 11:50:42    阅读次数:115
Python datetime&time
datetime.datetime.now()获取当前日期和时间 datetime.datetime(2019,9,30,22,22,0) 构造日期和时间函数 fromtimestamp() 可以将时间戳转换成 datetime 对象 strptime()和strftime()函数 strptime ...
分类:编程语言   时间:2020-01-25 23:41:31    阅读次数:143
常用的API和基础算法
和数学相关 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
6430条   上一页 1 ... 47 48 49 50 51 ... 643 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!