摘要: package net.wjn.day1;import static java.lang.Math.*;public class StaticImport { public static void main(String[] args) { int x=1; x++; System.out.println(x); System.out.println( max(3,6));//求最大 System.out.println( abs(9-6));//两数相减 } } p... 阅读全文
posted @ 2012-10-21 21:22 〆 冷情绪 阅读(171) 评论(0) 推荐(0) 编辑