Assignment #79 and Ten Times

Code

    /// Name: Brendan Baird
    /// Period: 6
    /// Program Name: Ten Times
    /// File Name: TenTimes.java
    /// 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 79