zoukankan      html  css  js  c++  java
  • java实现输入日期,输出是该年的第几天

    import java.io.*;

    public class countday {

     /**   * @param args   */  

    public static void main(String[] args) throws IOException{   

    // TODO Auto-generated method stub  

     int year,month,date,i,day=0;   

    String str;   

    BufferedReader buf;   

    buf=new BufferedReader(new InputStreamReader(System.in));  

     System.out.println("输入一个年份");   

    str=buf.readLine();   

    year=Integer.parseInt(str);   

    System.out.println("输入一个月份");  

     str=buf.readLine();   

    month=Integer.parseInt(str);   

    System.out.println("输入一个日期");   

    str=buf.readLine();   

    date=Integer.parseInt(str);  

     for(i=1;i<month;i++)   

    {    

    day+=countDay(i,year);      

     }  

     day+=date;   

    System.out.println(day);  

    }   

    static int countDay(int month,int year)  

     {   

     int count=0;   

     switch(month)   

     {   

     case 1:    

    case 3:    

    case 5:    

    case 7:    

    case 8:    

    case 10:    

    case 12:    

     count=31;     

    break;   

     case 4:   

     case 6:   

     case 9:    

    case 11:    

     count=30;    

     break;   

     case 2:     

    if(year%4==0&&year%100!=0||year%400==0)     

     count=29;     

    else      

    count=2;    

    }      

     return count;  

    }

    }

  • 相关阅读:
    JavaSE教程-01初识Java-思维导图
    theano 模块 MLP示例
    EM理解(转)
    交叉验证(Cross Validation)方法思想简介
    imfilter()用法
    PSNR
    conv2、filter2、imfilter的区别
    图像上采样(图像插值)增取样(Upsampling)或内插(Interpolating)下采样(降采样),
    CSS清除浮动大全共8种方法
    支付宝轮播
  • 原文地址:https://www.cnblogs.com/iris-yx/p/3378306.html
Copyright © 2011-2022 走看看