Đây là bài ví dụ mẫu của chương 3 (trong slide):
Phạm vi truy xuất của 1 lớp, đối tượng, phương thức khởi tạo
import java.util.;
import java.io.;
class Sv
{
private int masv;
private String hoten;
private float dtb;
public void nhap()
{
Scanner x=new Scanner(System.in);
System.out.println("Nhap maSV: ");masv=x.nextInt();x.nextLine();
System.out.println("Ho va ten: ");hoten=x.nextLine();
System.out.println("Diem trung binh");dtb =x.nextFloat();
}
public void xuat()
{
System.out.print("Ma SV: "+masv+", Ho va ten: "+hoten+", Diem trung binh: "+dtb);
}
public boolean xetlenlop()
{
return dtb>=5;
}
public void setName(String newName)
{
hoten=newName;
}
public String getName()
{
return hoten;
}
}
class Test
{
public static void main(String[] args)
{
Sv x=new Sv();
x.nhap();
x.xuat();
if(x.xetlenlop()==true)
System.out.print("\nLen oi");
else
System.out.print("\nHuhu");
x.setName("Le Van Luyen");
System.out.print("\nHo ten sau khi doi: " + x.getName());
}
}
Last modified on November 20th, 2023 at 3:22 am
Nam Le
lequocnam
0 responds