Assignment #112

Code

    
    ///Name: Cody Swain
    ///Period: 6
    ///Project Name: OdometerLoops
    ///File Name: OdometerLoops.java
    ///Date: 5/2/16
    
    
    
    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 a = keyboard.nextInt();
            
            for ( int thous=0; thous
    
    

Picture of the output

Assignment 112