Assignemnt #112 OdometerLoops.java

Code

    /// Name: Boris Kazantsev
    /// Period: 6
    /// Program Name: OdometerLoops
    /// File Name: OdometerLoops.java
    /// Date Finished: 5/17/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

Pic