Counting Machine Revisited

Code

    /// Name: Rachel Smith
    /// Period: 5
    /// Program Name: Counting Machine Revisited
    /// File Name: Revisited.java
    /// Date Finished: 12/11/2015
    
    import java.util.Scanner;
    
    public class Revisited {
        
        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 1