09 2020 档案

摘要:1 public class math{ 2 public static void main(String[] args) { 3 Scanner s=new Scanner(System.in); 4 int d=0; 5 int[] a=new int[30]; 6 int[] b=new in 阅读全文
posted @ 2020-09-30 12:31 敲敲代代码码 阅读(157) 评论(0) 推荐(0)
摘要:枚举 1 public class EnumTest { 2 public static void main(String[] args) { 3 Size s=Size.SMALL; 4 Size t=Size.LARGE; 5 //s和t引用同一个对象? 6 System.out.println 阅读全文
posted @ 2020-09-29 22:05 敲敲代代码码 阅读(141) 评论(0) 推荐(0)
摘要:Account.java 1 package 第一次; 2 import java.util.*; 3 class Account{ 4 private String accountID; 5 private String accountname; 6 private String operated 阅读全文
posted @ 2020-09-22 22:31 敲敲代代码码 阅读(139) 评论(0) 推荐(0)