For loops #79 (Nothing like self-motivation)

Code

/// Name: Amir Salehi
/// Period: 7
/// Program Name: Counting Machine
/// File Name: CountingMachine.java
/// Date Finished: 2/5/2016

 
import java.util.Scanner;

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

        
        System.out.print( "Count to: " );
        int count = keyboard.nextInt();

        for ( int n = 1 ; n <= count ; n = n+1 )
        {
            System.out.print( n + " " );
        }

    }
}
    

Picture(s) of the output

Assignment 7

Back to Homepage