OdometerLoops

Code

import java.util.Scanner;

public class OdometerLoops
{
	public static void main( String[] args ) throws Exception
	{
        Scanner keyboard = new Scanner(System.in);
        
        int num;
        
        System.out.print( " Choose a number please: " );
        num = keyboard.nextInt();
        
        num = num+1;
        
		for ( int thous=0; thous

It does not show the rest of the code for some reason.( page source? )

OdometerLoops

Assignment 64