Assignemnt #80 Counting Machine

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Couting Machine
    ///File Name: countingMachine.java
    ///Date: 3/3/2015
    
 import java.util.Scanner;

public class countingMachine
{
        public static void main( String[] args )
        {
                Scanner keyboard = new Scanner( System.in );
                int imput, count;
                
                System.out.print( "Count to: " );
                imput = keyboard.nextInt();
                
                for ( count = 1 ; count <= imput ; count = count + 1 )
                        System.out.print( count + " " );
        }
}
    

Picture of the output

Assignment 80