Assignment #81 Counting Machine Revisited

Code

    /// Name: Matthew Lorence
    /// Period: 5
    /// Program Name: Counting Machine Revisited
    /// File Name: CountingMachineRevisited.java
    
    import java.util.Scanner;

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

Picture of the output

Assignment 81