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?

Bài thực hành 2 – Quản lý HS [oop]

10cth1-2 March 14, 2012 0

Môn java trong lớp ta có nhiều nhân tài mà giấu nghề quá, chả ai lên chia sẻ bài viết cho anh em gì cả, bài này mình làm theo hướng dẫn của tài liệu, các bạn nào chưa biết thì xem và ai biết thì cùng thảo luận tối ưu hơn hay cách khác he [emot]sleepy[/emot].

[codes=java]import java.util.;
import java.io.
;

class sv
{
  private int masv;
  private String hoten;
  private float dtb;
  private Scanner nhap=new Scanner(System.in);//moi sua
  public void setMaso(int ms)
  {
    masv=ms;
  }
  public void setHoten(String hoten)
  {
    this.hoten=hoten;
  }
  public void setDtb(float dtb)
  {
    this.dtb=dtb;
  }
  
  public int getMaso()
  {
    return masv;
  }
  
  public String getHoten()
  {
    return hoten;
  }
  public float getDtb()
  {
    return dtb;
  }
  
  public void nhap()
  {
  //  Scanner nhap=new Scanner(System.in);
      System.out.print("NHap vao Ten SV: "); hoten=nhap.nextLine();
      System.out.print("NHap vao Ma SV: "); masv=nhap.nextInt();
      System.out.print("NHap vao dtb SV: "); dtb=nhap.nextFloat();
      
  }
  public void xuat()
  {
    System.out.print("SV moi vua nhap \nMa SV: "+masv+" \nTen SV: "+hoten+" \nDTb: "+dtb);
  }
}

class demo1
{
  public static void main (String[] args)
  {
    sv sinhvien= new sv();
    sinhvien.nhap();
    sinhvien.xuat();
  }
  
}[/codes]


Last modified on March 31st, 2021 at 12:57 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.