2017年7月11日
摘要: 1 public class year{ 2 3 4 public static void main(String[] args){ 5 6 int year=2010; 7 8 if((year%4==0&&year%100!=0)||(year%400==0)){ 9 10 System.out.println(year+"年是闰年"... 阅读全文
posted @ 2017-07-11 18:38 动手不吵吵的程序员 阅读(772) 评论(0) 推荐(0) 编辑
摘要: 1 public class HelloWord{ 2 3 public static void main(String[] args){ 4 5 System.out.println("你好,java"); 6 } 7 8 } 阅读全文
posted @ 2017-07-11 18:29 动手不吵吵的程序员 阅读(451) 评论(0) 推荐(0) 编辑