Home > 学生


Javaで学生と教員を作成する方法

学生クラスの作成:public class Student { private String name; private int age; private String studentId; public Student(String name, int age, String studentId) { this.name = name; this.age = age; this.studentId = studentId; } // ゲッターとセッターの定義 public String getNa>>More