const rs = require(「readline-sync」);
console.log(請輸入年份
);
let year = rs.question() - 0;
console.log(請輸入月份
);
let month = rs.question() - 0;
console.log(請輸入日期
);
let date = rs.question() - 0;
//建立變數(即最終的天數)
let days = 0;
//1、判斷閏年(只需要2月)
//2、大小月
switch (month - 1) else
case 1:
days += 31;
}days += date;//累加當前月的天數
console.log(您輸入的$年$月$日,是$年的$天
);
Oracle 獲取當前年 月 日
oracle 獲取當前年 月 日 1 oracle中extract 函式從oracle 9i中引入,用於從乙個date或者interval型別中擷取到特定的部分 語法如下 extract from selectextract yearfromsysdate fromdual 當前年 selectex...
Oracle 獲取當前年 月 日
size large oracle 獲取當前年 月 日 第一種 new timestamp system.currenttimemillis 第二種 sysdate 1 oracle中extract 函式從oracle 9i中引入,用於從乙個date或者interval型別中擷取到特定的部分 語法如...
js獲取當前年月日
var date new date date getyear 獲取當前年份 2位 date getfullyear 獲取完整的年份 4位 date getmonth 獲取當前月份 0 11,0代表1月 date getdate 獲取當前日 1 31 date getday 獲取當前星期x 0 6,0...