Advertisement
wingman007

Java - Student

Nov 24th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication16;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class Student extends Human{
  12.    
  13.     public long fnumber;
  14.    
  15.     public void introduceYourself() {
  16.         super.introduceYourself();
  17.         // System.out.println("My name is " + name + ". I am " + age + " old!" + "My number is " + fnumber);
  18.         System.out.println("My number is " + fnumber);
  19.     }    
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement