Assignemnt #112, Odometer Loops

Code

import java.util.Scanner;

public class OdometerLoops
{
	public static void main( String[] args ) throws Exception
	{
        Scanner keyboard = new Scanner(System.in);
        
		System.out.print( "Which Base (2-10): " );
        int n = keyboard.nextInt();
        
        for ( int thous=0; thous
    
    

Picture of the output

Assignment 112