Assignemnt #112 O Loops

Code

    /// Name: Caelan Dorstad
    /// Period: 6
    /// Program Name: OdometerLoops
    /// File Name: OdometerLoops.java
    /// Date Finished: 5/5/2016
    
  import java.util.Scanner;

public class OdometerLoops
{
	public static void main( String[] args ) throws Exception
	{
        Scanner keyboard = new Scanner(System.in);
        int limit = 0;
        
        System.out.print("Choose the base: ");
        limit = keyboard.nextInt();
        
		for ( int thous=0; thous
    
    
            
                               

    

Picture of the output

Assignment 10