Assignment #79 and Ten Times

Code

    /// Name: Ali Kurland
    /// Period: 6
    /// Program Name: Ten Times
    /// File Name: TenTimes.java
    /// Date Finished: 10/22/2015
    
    public class TenTimes
    {
        public static void main( String[] args )
        {
            for ( int n = 1 ; n <= 10 ; n = n+1 )
            {
                System.out.println( "Mr. Davis is cool." );
            }
    
        }
    }
    

Picture of the output

Assignment 79