Assignment #79 Ten Times

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name:  TenTimes
    /// File Name:  TenTimes.java
    /// Date Finished 2/5/2016
    
public class TenTimes
{
        
        public static void main( String[] args ) 
{
            
            for ( int n = 1; n <= 10; n = n+1 ) 
                                    {
                System.out.println( "Mr. Davis is SO cool." );
            }
        
        }
    }
 

    

Picture of the output

// Assignment 79