/// Name: Lacey Reese /// Period: 5 /// Program Name: GettingIndividualDigits /// File Name: GettingIndividualDigits.java /// Date Finished 4/29/2016 public class GettingIndividualDigits { public static void main( String[] args ) { System.out.println(); for ( int i = 1; i<10; i++ ) { for ( int n = 0; n<10; n++ ) { int c = i + n; System.out.println( i + "" + n + ", " + i + "+" + n + " = " + c ); } } } }Picture of the output