Assignemnt #79 and Ten Times

Code

/// Name: Raff Lisbona
/// Period: 6
/// Program Name: Counting For
/// File Name: CountingFor.java
/// Date Finished: 1/13/2015

public class TenTimes
{
    public static void main( String[] args )
    {
        for ( int n = 1; n <= 10; n = n + 1 )
            System.out.println(n + ". Mark cannot control his bowels.");
    }
}
    

Picture of the output

Assignment 79