Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package samkough.main;
- public class Hobbits
- {
- public static void main(String args[])
- {
- HobbitsTestDrive[] h = new HobbitsTestDrive[3];
- int z = 0;
- while (z < 2)
- {
- z = z + 1;
- h[z] = new HobbitsTestDrive();
- h[z].name = "bilbo";
- if (z == 1)
- {
- h[z].name = "frodo";
- }
- if (z == 2)
- {
- h[z].name = "sam";
- }
- System.out.println(h[z].name + " is a ");
- System.out.println("good Hobbit name");
- }
- }
- }
- ------------------------------------------------------------------------------------------------------------------
- package samkough.main;
- public class HobbitsTestDrive
- {
- String name;
- }
Advertisement
Add Comment
Please, Sign In to add comment