04 2019 档案
实验六 类的封装
摘要:一.源代码 import java.util.Scanner; public class Account { public int id; public int password; public String name; public int money; public Account(int id 阅读全文
posted @ 2019-04-14 19:42 我是wyw 阅读(137) 评论(0) 推荐(0)
实验五 任意输出十个int类型数据,排序输出,再找出素数
摘要:一.源程序 public class Paixu { public static void main(String[] args) { Scanner s = new Scanner(System.in); int temp; int[] a = new int[10]; for (int i = 阅读全文
posted @ 2019-04-07 16:15 我是wyw 阅读(188) 评论(1) 推荐(0)