摘要: 1 abstract class A{ 2 private String name; 3 public A(String name) { 4 this.name = name; 5 } 6 public String getName() { 7 return this.name; 8 } 9 pub 阅读全文
posted @ 2017-12-18 14:40 古河家 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-12-18 13:56 古河家 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1 package cn.yxy; 2 3 public class L { 4 5 public static void main(String[] args) { 6 int []arr = new int[30]; 7 arr[0]=1; 8 arr[1]=1; 9 for(int i=2;ia... 阅读全文
posted @ 2017-12-18 13:55 古河家 阅读(113) 评论(0) 推荐(0) 编辑
摘要: package com.aila; public class Ailajiang { public static void main(String[] args) { int[] arr = new int [30]; arr[0] = 1; arr[1] = 1; for(int i = 2;i 阅读全文
posted @ 2017-12-18 13:54 古河家 阅读(236) 评论(0) 推荐(0) 编辑