//This is single line comment
/*
This is
multi line comment
*/
//Single line
System.out.println("Hello world"/*+"This is code commented out inline."*/); //You can also put comments at the end
/*
Multi
Line
comment
*/
// This is how you comment in java
/* You can also do it like this */
// declare and initialize two variables
int a =1;
int b = 3;
// print the output
System.out.println("This is output");
//Single Line
/* Multi Line
Comments
! */
//Comments cannot be runned
/*This can be
runned */
System.out.println("Hello, World");
//The normal single line comment
/*
The normal multi-line comment
*/
// this is a comment
/* this is
a multiline
comment */
//This is a comment that does not show
/*I am a multi-lined comment that does
not show either*/
System.out.print("This is text");