///Name: Cody Swain ///Period: 6 ///Project Name: TenTimes ///File Name: TenTimes.java ///Date: 1/12/16 public class TenTimes { public static void main( String[] args ) { for ( int x = 0; x < 10; x++ ){ System.out.println( "Mr. Davis is cool. " ); } } }