码迷,mamicode.com
首页 > 其他好文 > 详细

植树节巧妙猜生日问题

时间:2015-04-07 09:54:44      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:

今年的植树节(2012年3月12日),小明和他的叔叔还有小伙伴们一起去植树。 
    休息的时候,小明的同学问他叔叔多大年纪,他叔叔说:“我说个题目,看你们谁先猜出来!” 
  “把我出生的年月日连起来拼成一个8位数(月、日不足两位前补0)正好可以被今天的年、月、日整除!” 
    他想了想,又补充到:“再给个提示,我是6月出生的。” 
    根据这些信息,请你帮小明算一下,他叔叔的出生年月日。 
    答案写在“解答.txt”中,不要写在这里! 
    格式是年月日连成的8位数。 

    例如,如果是1948年6月12日,就写:19480612 

package blueBriage;

public class PlantTreesGuessBirthday {
	public static void main(String[] args) {
		new PlantTreesGuessBirthday().run();
	}
	public void run(){
		int n=20120312;
		String s="";
		for(int i=19000601;i<=n;i++){
			s="" +i;//把i转化为字符串
			int day=Integer.parseInt(s.substring(6));//天
			int month=Integer.parseInt(s.substring(4,6));//月
			if(day>=1&&day<=31&&month>=1&&month<=12&&i%2012==0&&i%12==0){
				System.out.println(i);
			}
		}
	}
}

19200516
19520424
19550604
19870512

植树节巧妙猜生日问题

标签:

原文地址:http://blog.csdn.net/u014010769/article/details/44906389

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!