Xây dựng lớp sinh viên gồm 1 lớp chính 1 lớp nội thực hiện các công việc sau: * Nhập thông tin(họ tên, mã sv) * Tính điểm trung bình(Toán+Văn) * Xếp loại CODE: Select All package tinhdiemsdlopnoi;import java.util.Scanner;public class TinhDiemsdLopNoi { /** * @param args the command line arguments */ static class qlDiem { double dTB,dv,dt; public void nhapDL() { int maSV; String hoTen; System.out.println("Nhập Họ tên:"); Scanner nhap=new Scanner(System.in); hoTen=nhap.nextLine(); System.out.println("Nhập mã sinh viên"); maSV=nhap.nextInt(); System.out.println("Nhập điểm Toán"); dt=nhap.nextDouble(); System.out.println("Nhập điểm Văn"); dv=nhap.nextDouble(); } public Double dTB() { dTB=(dt+dv)/2; return dTB; } public void xepLoai() { if(dTB<5)System.out.println("Yếu"); if(dTB>=5&&dTB<=7)System.out.println("Khá"); if(dTB>=8&&dTB<=10)System.out.println("Giỏi"); } } public static void main(String[] args) { qlDiem sva=new qlDiem(); sva.nhapDL(); System.out.println("dTB="+sva.dTB()); sva.xepLoai(); } }