Assignemnt #112 and OdometerLoops

Code

    ///Name: Luke Shin
    ///Period: 7
    ///Project Name:  OdometerLoops
    ///File Name:  OdometerLoops.java
    ///Date: 03/20/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 112