Assignment #79 and ten times

Code

       /// Name: Trent Lane
    /// Period: 6
    /// Program Name: Ten Times

    /// Date Finished: 12/8/2015
    
    public class TenTimes
    {
        public static void main(String[] args)
        {
            for ( int n = 1; n <= 10; n++ )
            {
                System.out.println(n + ". Mr. Davis is super cool.");
            }
        }
    }

 

Picture of the output

Assignment 71