标签:
今年的植树节(2012年3月12日),小明和他的叔叔还有小伙伴们一起去植树。例如,如果是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); } } } }
标签:
原文地址:http://blog.csdn.net/u014010769/article/details/44906389