求当前日期是该年第几天

简介: 求当前日期是该年第几天

public static void main(String[] args) {

   Scanner scanner=new Scanner(System.in);

   int a=scanner.nextInt();

   int b=scanner.nextInt();

   int c=scanner.nextInt();

   Calendar ca1 = Calendar.getInstance();

   ca1.set(a, b-1, c);

   int num = ca1.get(Calendar.DAY_OF_YEAR);

   System.out.println(num);

}


相关文章
|
6月前
年月日
年月日
47 0
|
6月前
|
前端开发 索引
前端获取当前日期---------------年月日//时分秒
前端获取当前日期---------------年月日//时分秒
56 0
|
Python
今天是今年的的第几天
今天是今年的的第几天
203 0
日期比较
日期比较
69 0
获取当前日期和时间
获取当前日期和时间
160 0
|
Java
获取当前日期时间
获取当前日期时间
149 0
1185. 一周中的第几天 : 简单日期统计模拟题
1185. 一周中的第几天 : 简单日期统计模拟题