import java.util.Scanner;
public class HocSinh {
private String maHS;
private String hoTen;
private String lop;
private double diemTB;
public void setMaHS(String maHS) {
this.maHS = maHS;
}
public String getMaHS() {
return this.maHS;
}
public void setHoTen(String hoTen) {
this.hoTen = hoTen;
}
public String getHoTen() {
return this.hoTen;
}
public void setLop(String lop) {
this.lop = lop;
}
public String getLop() {
return this.lop;
}
public void setDiemTB(double diemTB) {
this.diemTB = diemTB;
}
public double getDiemTB() {
return this.diemTB;
}
public void nhap() {
Scanner scanner = new Scanner(System.in);
System.out.print("Nhập mã số học sinh: ");
this.maHS = scanner.nextLine();
System.out.print("Nhập họ tên: ");
this.hoTen = scanner.nextLine();
System.out.print("Nhập lớp: ");
this.lop = scanner.nextLine();
System.out.print("Nhập điểm trung bình: ");
this.diemTB = scanner.nextDouble();
}
public void xuat() {
System.out.println("Thông tin học sinh:");
System.out.println("Mã số học sinh: " + this.maHS);
System.out.println("Họ tên: " + this.hoTen);
System.out.println("Lớp: " + this.lop);
System.out.println("Điểm trung bình: " + this.diemTB);
}
public String xepLoai() {
if (this.diemTB >= 8.0) {
return "Giỏi";
} else if (this.diemTB >= 6.5) {
return "Khá";
} else if (this.diemTB >= 5.0) {
return "Trung bình";
} else {
return "Yếu";
}
}
public static void main(String[] args) {
HocSinh hs1 = new HocSinh();
hs1.nhap();
HocSinh hs2 = new HocSinh();
hs2.nhap();
if (hs1.getDiemTB() > hs2.getDiemTB()) {
System.out.println("Học sinh có điểm cao hơn: ");
hs1.xuat();
} else {
System.out.println("Học sinh có điểm cao hơn: ");
hs2.xuat();
}
}
}