摘要: static int[][] seq_int = { {2349,12,420,549,120,3,23}, {1,30,84,693,29,4,4}, {7,239,943,82,32,492}, {2,4,234,5920,2019,40234}, {5,603,582,6928,923752,234}, {9,509,2392,95,102,402,2} }; public static void main(String[] args) ... 阅读全文
posted @ 2014-02-21 21:55 小菜喵 阅读(147) 评论(0) 推荐(0) 编辑
摘要: class Scope{ private int x; public int getX() { return x; } public void setX(int x) { this.x = x * 3; }}public class ScopeTest extends Scope{ public static void main(String[] args) { int a = 100; Scope se = new Scope(); se.setX(a); System.o... 阅读全文
posted @ 2014-02-21 16:17 小菜喵 阅读(118) 评论(0) 推荐(0) 编辑