int day; printf("请输入1~7的数字"); scanf("%d",&day); if(day>0&&day<8) { //多重if...else if条件分支实现 if(day==1){ printf("星期一"); }else if(day==2){ printf("星期二"); ...
分类:
其他好文 时间:
2017-03-23 02:38:08
阅读次数:
445
#include int main() { int year,month,day,sum,leap; printf("Please enter year,month,day (just like:2009,9,9)\n"); scanf("%d,%d,%d",&year,&month,&day); ... ...
分类:
其他好文 时间:
2017-03-23 01:16:36
阅读次数:
143
今天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=0 昨天的所有数据:select * from 表名 where DateDiff(dd,datetime类型字段,getdate())=1 7天内的所有数据:sel ...
分类:
数据库 时间:
2017-03-13 16:16:31
阅读次数:
171
点这里去做题 %*c 读入时跳过一位,本题中即跳过"-"; ...
分类:
其他好文 时间:
2017-03-11 21:48:15
阅读次数:
178
偶然看到一份javase的练习题,mark一下,以后练习下 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... 【 ...
分类:
编程语言 时间:
2017-03-07 22:33:48
阅读次数:
276
用中间变量做这个题 1、“请输入年份:”(1-9999) “请输入月份:”(1-12) “请输入日期:”(要判断大小月,判断闰年) 判断输入的时间日期是否正确 2、计算输入的时间是当前这一年的第几天 ...
为当前用户创建cron服务 1. 键入 crontab -e 编辑crontab服务文件 例如 文件内容如下: */2 * * * * /bin/sh /home/admin/jiaoben/buy/deleteFile.sh 保存文件并并退出 */2 * * * * /bin/sh /home/a ...
分类:
系统相关 时间:
2017-02-12 21:15:59
阅读次数:
324
import java.util.Scanner;public class Thirtheen { /*输入某年某月某日,判断这一天是这一年的第几天?*/ public static void main(String[] args){ Scanner input=new Scanner(System ...
分类:
编程语言 时间:
2017-01-27 00:11:53
阅读次数:
216
1 //获取今天 2 var nowDate= new Date(); //当天日期 3 console.log(nowDate); 4 //今天是本周的第几天 5 var nowDayOfWeek= nowDate.getDay(); 6 console.log(nowDayOfWeek); 7 ... ...
分类:
其他好文 时间:
2017-01-05 18:31:20
阅读次数:
404
SimpleDateFormat 是一个以国别敏感的方式格式化和分析数据的具体类。 它允许格式化 (date -> text)、语法分析 (text -> date)和标准化。 SimpleDateFormat 允许以为日期-时间格式化选择任何用户指定的方式启动。 但是,希望用 DateFormat ...
分类:
其他好文 时间:
2017-01-04 23:30:38
阅读次数:
228