真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

JAVA怎么求兩個(gè)日期的差值-創(chuàng)新互聯(lián)

這篇文章主要介紹“JAVA怎么求兩個(gè)日期的差值”,在日常操作中,相信很多人在JAVA怎么求兩個(gè)日期的差值問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”JAVA怎么求兩個(gè)日期的差值”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

專注于為中小企業(yè)提供成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)頭屯河免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千多家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

  1. import java.util.Scanner;

  2. class fundemo6{

  3. public static void main(String[] arg){

  4.     Scanner s=new Scanner(System.in);

  5.     System.out.println("Please input first date year:");

  6.     int y1=s.nextInt();

  7.     System.out.println("Please input first date month:");

  8.     int m1=s.nextInt();    

  9.     System.out.println("Please input first date day:");

  10.     int d1=s.nextInt();    

  11.     System.out.println("The first date you input is:"+y1+"-"+m1+"-"+d1);

  12.     System.out.println("Please input second date year:");

  13.     int y2=s.nextInt();

  14.     System.out.println("Please input second date month:");

  15.     int m2=s.nextInt();    

  16.     System.out.println("Please input second date day:");

  17.     int d2=s.nextInt();    

  18.     System.out.println("The second date you input is:"+y2+"-"+m2+"-"+d2);

  19.     System.out.println("sub days of two years is:"+subDays(y1,m1,d1,y2,m2,d2));

  20.     }

  21. public static int getDays(int y,int m,int d){

  22.     int sum=0;

  23.     switch(m-1){

  24.     case 11:sum+=30;

  25.     case 10:sum+=31;

  26.     case 9:sum+=30;

  27.     case 8:sum+=31;

  28.     case 7:sum+=31;

  29.     case 6:sum+=30;

  30.     case 5:sum+=31;

  31.     case 4:sum+=30;

  32.     case 3:sum+=31;

  33.     case 2:if(isLeap(y))

  34.                 sum+=29;

  35.                 else

  36.                 sum+=28;

  37.     case 1:sum+=31;

  38.     }

  39.     sum+=d;

  40.     return sum;

  41.     }

  42. public static boolean isLeap(int y){

  43.     if(y%100!=0&&y%4==0||y%400==0)

  44.         return true;

  45.         return false;

  46. }

  47. public static int otherDays(int y,int m,int d){

  48.     if(isLeap(y))

  49.     return 366-getDays(y,m,d);

  50.     return 365-getDays(y,m,d);

  51. }

  52. public static int subDays(int y1,int m1,int d1,int y2,int m2,int d2){

  53.     if(y1==y1)

  54.         int day1=getDays(y1,m1,d1)-getDays(y2,m2,d2);

  55.     return abs(day1);

  56. }

  57. public static int abs(int n){

  58.     return n>=0?n:-n;

  59. }

  60. }

到此,關(guān)于“JAVA怎么求兩個(gè)日期的差值”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!


網(wǎng)站標(biāo)題:JAVA怎么求兩個(gè)日期的差值-創(chuàng)新互聯(lián)
文章來(lái)源:http://weahome.cn/article/dijgph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部