Assignemnt #116 and Individual Digits

Code

/// name: Leila Ordukhani
/// period: 6
/// program name: One Hundred and Six Program
/// file name: Digits.java
/// date finished: 5/2/16

import java.util.Scanner;

public class Digits
{
    public static void main( String[] args ) throws Exception
    {
    
                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 116