Recap on Java
I'm going to start recapping on my school work now…Especially on Java…
What I'm going to do is to put it the code that I write for the various Chapters of my text here and it's output…I don't why…But I guess I just want a place to show off or something. Haha. Oh well…At the end of the Chapter 1: Introduction , here's what they asked me to do.
1. Write a program that displays the message "Welcome to Java!" on the console.
Here's the code:
public class Welcome{
public static void main(String[] args){
System.out.println("Welcome to Java!"); }}
Output
Welcome to Java!
Honestly, very easy. But it'll get more exciting. Really. Haha