Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication16;
- /**
- *
- * @author fmi
- */
- public class Student extends Human{
- public long fnumber;
- public void introduceYourself() {
- super.introduceYourself();
- // System.out.println("My name is " + name + ". I am " + age + " old!" + "My number is " + fnumber);
- System.out.println("My number is " + fnumber);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement