Assignemnt #116 and 117th program

Code

///Name: Derrick Andreasen
///Period: 7
///Program name: 117th Program
///File name: Hund16prog.java
///Date Finished:4/25/2016

import java.util.Scanner;

public class Hund16prog
{
	public static void main( String[] args ) throws Exception
	{
        System.out.println( "" );
        
        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 117