Assignemnt #79 and Ten Times

Code

/// Name: Kyle Ivy
/// Period: 5
/// Program Name: SafeSquareRoot
/// File Name: SafeSquareRoot.java
/// Date Finished: 1/5/2016

    public class TenTimes
    {
        public static void main( String[] args )
        {
            for ( int x = 0; x < 10; x++ ){
                System.out.println( "Mr. Davis is cool. " );
            }
        }
    }

    

prog79.PNG

Assignment 1