Assignemnt #79, Ten Times

Code

      /// Name: Alex Pinder
      /// Period: 5
      /// Program Name: Ten Times
      /// File Name: prog79.java
      /// Date Complete: 2/17/16
      
      public class prog79
      {
          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