Java For Beginners NOTES!
Java For Beginners NOTES!
Notes!
1 - Your First Java Program! 3
Objective: Put text on screen 3
System.out.println("Hello world"); 3
2 - System.out.println() 4
Objective: Put text on screen another way 5
System.out.println("A"); 5
System.out.print("A"); 5
3 - Comments in Java 7
Objective: Write notes to our self, or disable code 7
// This is a comment! 7
/* This is 7
* also 7
*/ a comment! 7
System.out.println("Hello world");
2 - System.out.println()
System.out.println("A");
System.out.print("A");
3 - Comments in Java
// This is a comment!
/* This is
* also
*/ a comment!
4 - Escaping Characters in Java