Advertisement
wingman007

Java - main Human Student

Nov 24th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.93 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 JavaApplication16 {
  12.  
  13.     /**
  14.      * @param args the command line arguments
  15.      */
  16.     public static void main(String[] args) {
  17.         // TODO code application logic here
  18.         Human stoyan = new Human(); // Human("Stoyan", 50);
  19.         stoyan.name = "Stoyan";
  20.         stoyan.age = 50;
  21.        
  22.         Human ivan = new Human(); // Human("Ivan", 24);
  23.         ivan.name = "Ivan";
  24.         ivan.age = 24;
  25.        
  26.         Student niki = new Student();
  27.         niki.name = "Niki";
  28.         niki.age = 30;
  29.         niki.fnumber = 123344567L;
  30.        
  31.         // System.out.println(stoyan.name + " is " + stoyan.age + " old.");
  32.         stoyan.introduceYourself();
  33.         ivan.introduceYourself();
  34.         niki.introduceYourself();
  35.        
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement