Assignemnt #79 and Mr Davis Is Cool

Code

    ///Name: Daniel Tiffany-Appleton
    ///Period: 7
    ///Program Name: Mr Davis Is Cool
    ///File Name: MrDavisIsCool
    ///Date Finished: 2/2/16
    
    public class MrDavisIsCool
    {
        public static void main( String[] args )
        {
        
            System.out.println("Mr. Davis is cool!");
            System.out.println(" ");
            
            for ( int n = 1 ; n <= 10 ; n = n+1 )
            {
                System.out.println(n + ". Mr. Davis is cool!");
            }
            
        }
    }


    

Picture of the output

Assignment 79