Las Lomas Computer Science

Assignment 6 and Comments and Slashes

Code

    /// Name: Tommy Oyuntseren
    /// Period: 7
    /// Program Name: Comments and Slashes
    /// File Name: Comments and Slashes.java
    /// Date Finished: 9/11/15

    //My name is Tommy Oyuntseren Date Finished: 9/14/15
    //The two slashes signify when you make a comment and can read it later if you have to.
    public class CommentsAndSlashes
  {
    public static void main( String[] args )
    {
        // A comment, this is so you can read your program later.
        // Anything after the // is ignored by Java.

        System.out.println( "I could have code like this." ); // and the comment after is ignored.

        // You can also use a comment to "disable" or comment out a piece of code:
        // System.out.println("This won't run.");

        System.out.println( "This will run." );
    }
}


    

Picture of the output

Assignment 6