Assignemnt #79 Ten Times

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Ten Times
    ///File Name: Ten.java
    ///Date: 3/3/2015
    
 public class Ten
{
    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