Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Student
- {
- // instance variables - replace the example below with your own
- private String nama = "Aguel";
- private double grade = 4;
- public String getName(){
- return nama;
- }
- public void printGrade(){
- System.out.println(grade);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement