Assignment 79

Code

///Matthew Hughs
///5th period
///Ez.java
///3/31/2016

class Ez
{
    public static void main (String [] args)
    {
        
        for (int n = 1 ; n <= 10 ; n = n + 1)
        {
            System.out.println(n + ". Matthew is cool..");
        }
    }
}
    

Picture of the output

Countingfor