Assignment #79 and Ten Times

Code

        //Name: Mark Katz
    ///Period: 6
    ///Program Name: Ten Times
    ///File Name: tentime.java
    ///Date Finished: 11/4/15 
public class tentime
{
    public static void main( String[] args )
    {
        

        for ( int n = 1 ; n <= 10; n = n + 1 )
        {
            System.out.println( n + ". Mr Davis is cool." );
        }

    }
}

    

Picture of the output

Assignment79