
-----------------------------------
Mathush
Tue Feb 17, 2015 7:33 pm

Java Basic! Need Help
-----------------------------------
My teacher assigned me work, and im really new to java.
I need help with this:

Create a program that will print all of the following as shown below:
Your first and last name
your street number and street name
your city/town
your province
your postal code

PLEASE HELP! thanks alot! :D

-----------------------------------
Zren
Tue Feb 17, 2015 7:38 pm

RE:Java Basic! Need Help
-----------------------------------
Teachers usually assign homework based on material you've already learned. Pay more attention in class.

This is your typical Hello World appication.


public class HelloWorldApp {
    public static void main(String

The file must be called the same as the class, so in this case, HelloWorldApp.java.
