Computer Science Canada

Java Basic! Need Help

Author:  Mathush [ Tue Feb 17, 2015 7:33 pm ]
Post subject:  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! Very Happy

Author:  Zren [ Tue Feb 17, 2015 7:38 pm ]
Post subject:  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.

Java:

public class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Display the string.
    }
}


The file must be called the same as the class, so in this case, HelloWorldApp.java.


: