Assignemnt #112 Odometer Loops

Code

    ///Name: Joshua Pell
    ///Period: 6
    ///Project Name: Odometer Loops
    ///File Name: odometerLoops.java
    ///Date: 5/17/2015
    
import java.util.Scanner;

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

Picture of the output

Assignment 112