116

Code


    ///Name: Conner Wygaerts
///Period: 6
///Project Name: Digits
///File Name: Digits.java
///Date Finished: 5/5/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

YourInitials.html