2008-07-01から1ヶ月間の記事一覧

配列のところからもう一回

Java再開です. オブジェクト指向入門として,クラス宣言のお勉強の中で public class Student { String name; //氏名 int[] tens; //試験の点数 public Student(String name, int x, int y, int z) { this.name = name; this.tens[0] = x; this.tens[1] = y…