/// Name: Kyle Ivy /// Period: 5 /// Program Name: Multiples /// File Name: Multiples.java /// Date Finished: 4/20/2016 import java.util.Scanner; public class Multiples { public static void main( String[] args) { Scanner kb = new Scanner(System.in); int a; System.out.print("Choose a number: "); a = kb.nextInt(); for ( int b = 1; b <= 12; b ++){ int product = a*b; System.out.println( a + "x" + b + " = " + product ); } } }