79 Ten times

Code

///Name: Tyler Hart
///Period:5
///Project Name: Ten Times
///File Name:Ten.java
///2/27/2016


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