Assignemnt #78 Counting with a For Loop

Code

    /// Name: Brendan Miller
    /// Period: 5
    /// Program Name: Counting with a For Loop
    /// File Name: CountingFor.java
    /// Date Finished: 2/25/2015
    
    import java.util.Scanner;

public class CountingFor
{
    public static void main( String[] args )
    {
        Scanner keyboard = new Scanner(System.in);

        System.out.println( "Type in a message, and I'll display it a billion times." );
        System.out.print( "Message: " );
        String message = keyboard.nextLine();

        for ( int n = 1 ; n <= 1000000000 ; n = n+1 )
        {
            System.out.println( n + ". " + message );
        }

    }
}
//n = n+1 adds 1 to n so the loop will eventually end
//int n = 1 sets an integer which starts at 1 and is used as a counter for the loop
    

Picture of the output

Assignment 1