Assignemnt #79 Ten Times

Code

    /// Name: Drew Boxold
    /// Period: 5
    /// Program Name: Ten Times
    /// File Name: TenTimes.java
    /// Date Finished: 2/29/2016
    
    public class TenTimes
    {
        public static void main(String[] args)
        {
            for ( int n = 1; n <= 100; n++ )
            {
                System.out.println(n + ". georgi is a bloody WANKER.");
            }
        }
    }
    

Picture of the output

Assignment 79 Assignment 792