Assignment #79

Code

    /// Name: Ian Stanko
    /// Period: 5
    /// Program Name: tentimes
    /// File Name: tentimes.java
    /// Date Finished: 1/28/2016
    
    public class tentimes
    {
        public static void main( String[] args )
        {
            
    
            for ( int n = 1 ; n <= 10; n = n + 1 )
            {
                System.out.println( n + ". I like popcorn." );
            }
    
        }
    }


    

Picture of the output HOME

Assignment 79