Assignment #116 and getting Individual Digits

Code

      /// Name: Trent Lane
    /// Period: 6
    /// Program Name: Get Individual Digits
    /// Date Finished: 3/18/2016
    
    public class GetIndividualDigits
    {
        public static void main(String[] args)
        {
            for (int a = 1; a < 10; a++)
                for (int b = 0; b < 10; b++)
                {
                    System.out.println( a + "" + b + ", " + a + "+" + b + " = " + (a+b) );
                }
        }
    }



 

Picture of the output

Assignment 71