Assignment #81 CountingMachineRevisited

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name:  CountingMachineRevisited
    /// File Name:  CountingMachineRevisited.java
    /// Date Finished 2/5/2016
    
 import java.util.Scanner;
    
    public class CountingMachineRevisited
    {
        
        public static void main( String[] args ) 
        {
            
            Scanner keyboard = new Scanner(System.in);
            
            int from, to, by, n;
            
            System.out.print( "Count from: " );
            from = keyboard.nextInt();
            System.out.print( "Count to  : " );
            to = keyboard.nextInt();
            System.out.print( "Count by  : " );
            by = keyboard.nextInt();
            
            for ( n = from; n <= to; n = n + by ) {
                System.out.print ( n + " " );
            }
            
            System.out.println();
        }
    }

    
    

Picture of the output

// Assignment 81