Assignemnt #79 Ten Times

Code

    /// Name: Brendan Miller
    /// Period: 5
    /// Program Name: Ten Times
    /// File Name: TenTimes.java
    /// Date Finished: 2/25/2016
    
    public class TenTimes
    {
        public static void main(String[] args)
        {
            for ( int n = 1; n <= 10; n++ )
            {
                System.out.println(n + ". Jordan Belfort is God.");
            }
        }
    }
    

Picture of the output

Assignment 1