public class DVD_set {
//此处为copy
String[] name = new String[50];// 存储DVD的名字
String[] date = new String[50];// 当前DVD被借出的时间
int[] state = new int[50];// 当前DVD的存取状态
int[] count = new int[50];// 当前DVD被借出的次数
}
基本函数实现
外汇常见问题https://www.kaifx.cn/lists/question/
import java.util.Scanner;
public class DVD_main {
DVD_set DVD = new DVD_set();
//此处为copy
public void initial() {
DVD.name[0] = "罗马假日";
DVD.state[0] = 0;
DVD.count[0] = 30;
DVD.date[0] = "2020-11-18";