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 Human {
- public String name;
- public int age;
- // public Human(String nameParm, int ageParm){
- // name = nameParm; // this.name
- // age = ageParm;
- // }
- public void introduceYourself() {
- System.out.println("My name is " + name + ". I am " + age + " old!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement