ilminottaken

Untitled

Oct 12th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. /**
  2.  *
  3.  * @author Ilmi
  4.  * version 1.0.1
  5.  */
  6. public class Student
  7. {
  8.     // instance variables - replace the example below with your own
  9.     private String nama = "siapapun";
  10.     private double grade = 4;
  11.    
  12.     public String getName(){
  13.         return nama;
  14.     }
  15.    
  16.     public void printGrade(){
  17.         System.out.println(grade);
  18.     }
  19. }
Add Comment
Please, Sign In to add comment