Tag Archives: Java

Diving into Java

I wrote my first ever very simple Java program today which executes two lines of instructions and prints the output on a single line. Lets take a look at lines 5 and 6 of this program. System.out.print(3); prints the number 3 and positions the cursor immediately to the right of the number 3. System.out.println(“3 + […]

Leave a comment Continue Reading →