摘要: 来自为知笔记(Wiz) 阅读全文
posted @ 2016-10-21 16:48 鱼唇的污污 阅读(73) 评论(0) 推荐(0)
摘要: public class test1{ public static void main(String args[]) { long long_max=java.lang.Long.MAX_VALUE;//得到长整型的最大值 int int_max=java.lang.Integer.MAX_VALUE;//得到整形的最大值 short short_max=Short.MAX_VALUE;//... 阅读全文
posted @ 2016-10-21 09:32 鱼唇的污污 阅读(475) 评论(0) 推荐(0)
摘要: public class TestArray{ public static void main(String args[]) { int a[]; char b[]; a=new int[3]; b=new char[2]; System.out.print("数组a\n"); for(int i=0;i<3;i++) ... 阅读全文
posted @ 2016-10-21 08:10 鱼唇的污污 阅读(208) 评论(0) 推荐(0)
摘要: public class HelloWorld{ public static void main(String[]args) { System.out.println("HelloWorld"); }}来自为知笔记(Wiz) 阅读全文
posted @ 2016-10-21 08:00 鱼唇的污污 阅读(98) 评论(0) 推荐(0)