acDream


私信TA

用户名:acDream

访问量:35098

签 名:

欢迎光临CSDN博客https://blog.csdn.net/acDream_

等  级
排  名 133
经  验 7601
参赛次数 4
文章发表 72
年  龄 0
在职情况 学生
学  校 黑龙江工商学院
专  业 软件工程

  自我简介:

欢迎光临CSDN博客https://blog.csdn.net/acDream_

解题思路:

注意事项:别忘了导包

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Calendar;

import java.util.GregorianCalendar;



参考代码:

public class 生日日数 {


public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner in = new Scanner(System.in);

while(in.hasNext()) {

int year = in.nextInt();

int month = in.nextInt()-1;

int day = in.nextInt();

Calendar cal = new GregorianCalendar(year, month, day);

cal.add(Calendar.DATE, 10000);

SimpleDateFormat format = new SimpleDateFormat("yyyy-M-d");

System.out.println(format.format(cal.getTime()));

}

}


}


 

0.0分

2 人评分

  评论区

Java秒杀这题
2018-05-02 11:31:25
  • «
  • 1
  • »