Assignemnt #79

Code

///colin hinton
///5th period
///Pls.java
///12/1/2015

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

Picture of the output

Assignment 1