This web page requires JavaScript to be enabled.

JavaScript is an object-oriented computer programming language commonly used to create interactive effects within web browsers.

How to enable JavaScript?

VD mẫu chương 3: Phạm vi truy xuất và đối tượng, phương thức khởi tạo [OOP]

10cth1-2 March 21, 2012 0

Đâ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

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.