Assignemnt #79 Ten Times

Code

    ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Ten Times
    ///File Name: TT.java
    ///Date: 3/1/2016
  
public class TT
{
    public static void main( String[] args )
    {
        for ( int n = 1 ; n <= 10 ; n = n+1 )
        {
            System.out.println( n + ". " + "Mr. Davis is NOT cool." );
        }

    }
}


    

Picture of the output

assignment79