using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication3{ class Program { static void Main(str ...
到了约定时间,自动执行任务: 需要软件包crond [root@u ~]# rpm -qa | grep cron cronie-1.4.11-17.el7.x86_64 crontabs-1.11-6.20121102git.el7.noarch cronie-anacron-1.4.11-17. ...
分类:
其他好文 时间:
2017-12-31 00:36:52
阅读次数:
220
DDD是该天在一年内的第多少天,d是在一周内第几天,dd是一个月内的 DY :Day of week abbreviated Mon, Tue, Fri DAY :Day of week spelled out Monday, Tuesday, Friday D :Day of week (1–7) ...
分类:
数据库 时间:
2017-12-29 15:32:54
阅读次数:
286
题目一 include int days(int year,int month,int day); void main() { //定义函数,对给出年、月、日计算该天是该年的第几天 int year,month,day,d; printf("请输入年,月,日\n"); scanf("%d,%d,%d ...
分类:
其他好文 时间:
2017-12-24 11:16:32
阅读次数:
167
python是1970年诞生 这个时间戳是python1970年诞生日 到现在 以小数显示时间 tm_wday 星期一到星期五 从0开始数起 time.sleep() 秒为单位 程序静止多少秒 time.gmtime() UTC时区的struct_time 取里面元组的值 打印1970年的哪一天 t ...
分类:
编程语言 时间:
2017-12-23 11:49:37
阅读次数:
228
今天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=0 昨天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=1 7天内的所有数据:sel... ...
分类:
数据库 时间:
2017-12-19 20:00:40
阅读次数:
208
os sys 系统命令 ConfigParser logging 日志级别 logging.basicConfig函数各参数:filename: 指定日志文件名filemode: 和file函数意义相同,指定日志文件的打开模式,'w'或'a'format: 指定输出的格式和内容,format可以输出 ...
分类:
编程语言 时间:
2017-12-19 00:51:46
阅读次数:
162
题目出处:http://codeforces.com/problemset/problem/884/A 题目大意:每天时间分两部分,工作和学习,工作优先,闲暇读书,问第几天读完 简单模拟,按顺序把每天可读书时间加和直到读完 ...
分类:
其他好文 时间:
2017-12-17 18:11:40
阅读次数:
142
//日期计算 用户输入年月日,返回是这一年的第几天 let readline = require("readline-sync"); console.log("请输入年份"); let year = parseInt(readline.question("")); console.log("请输入月... ...
分类:
其他好文 时间:
2017-12-10 15:17:02
阅读次数:
137
""" 题目:输入某年某月某日,判断这一天是这一年的第几天? """ import datetime import time from functools import reduce def calculate1(t): """ 直接利用python的datetime模块计算 :param t: :... ...
分类:
编程语言 时间:
2017-12-07 21:10:28
阅读次数:
165