I am COMPLETELY New to java, and have not a clue what to do!
These are my directions:
Write a program that displays this name and address thusly:
Joe Philagio
582 Troy Street
Birmingham, Al. 48331
Our instructor gave us this info. to supposedly help:
INPUT/OUTPUT:
int. num; String animal;
System.out.println("How many critters?:");
num = Keyboard.readInt();
System.out.println("What kind?:");
animal - Keyboard.readString();
System.out.println("You have" + num + "\t" + animal + "s.");
Seeing that the example has nothing to do with the assignment, I have no clue how to do this! PLEASE HELP ME