使用者輸入年月日,判斷輸入的日期是當年的第幾天

2021-10-24 09:49:40 字數 542 閱讀 3438

//使用者輸入年月日,請輸出是當年的第幾天

console.log(請輸入年份:);

let inputyear = rs.question();

console.log(請輸入月份:);

let inputmonth = rs.question();

console.log(請輸入日:);

let inputday = rs.question() - 0;

//月份減1(累加當前月之前月份的天數)

let temp = inputmonth - 1;

// 總天數

let sum = inputday;

// // 1\3\5\7\8\10\12 31

// // 4\6\9\11 30

switch (temp) else

case 1:

sum += 31;

}console.log(您輸入的$年$月$,是$年的第$天!);

輸入年月日,得到輸入的日期是該年的第多少天

記錄一下自己的 region 讓使用者輸入乙個年月日,輸出這一天是該年的第幾天 static void day console.writeline 請輸入月份 var mouth console.readline int resmouth isint mouth while resmouth 1 r...

判斷使用者輸入的年月日是當前年的第多少天

const rs require readline sync console.log 請輸入年份 let year rs.question 0 console.log 請輸入月份 let month rs.question 0 console.log 請輸入日期 let date rs.questi...

彙編輸入年月日並判斷是否正確

crlf macro mov dl,0dh mov ah,02h int 21h mov dl,0ah mov ah,02h int 21h endm cross macro mov dl,mov ah,02h int 21h endm data segment data1 db this is a...