You are here: Home / Topics / Java Program Comments

Java Program Comments

Filed under: Java on 2023-08-11 19:08:22

// Simple example of comments

class Comments
{
// Your program begins with a call to main().
// this is single line comment

public static void main( String args[ ] )
{
 System.out.println("Java Programming Examples");

/* 
  This is multiline comment
  with multiple lines
*/
}
}


Output:

Java Programming Examples

About Author:
V
Vinay Kumar     View Profile
Hi, I am using MCQ Buddy. I love to share content on this website.