Assignment #79 and Ten Times

Code

                        /// Name: Graham Pollock
                        /// Period: 5
                        /// Program Name: Ten Times
                        /// File Name: TenTimes.java
                        /// Date Finished: 02/4/2016/
                        
    public class TenTimes
    {
        public static void main(String[] args)
        {
            for(int n=1; n<=10; n++)
            {
                System.out.println("Mr. Davis is Cool");
            }
        }
    }
    

Picture of the output

Assignment