Guest User

Untitled

a guest
Sep 28th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.belajar.aritmatika;
  2. //class Profile
  3. public class Profile{
  4.  
  5. public String nama;
  6. public String kelas;
  7. public int lahir;
  8.  
  9. public int hitungUmurKu(int thnSekarang, int thnLahir){
  10.  
  11. return thnSekarang-thnLahir;
  12.  
  13. }
  14. /*
  15. 9.Line 9 = public void diganti jadi public int sama
  16. String thnLhir diganti jadi int thnLahir
  17. */
  18.  
  19. }
Add Comment
Please, Sign In to add comment