Assignment 116, Getting Individual Digits

Code

   ///Name: Stella Koliavas
   ///Period: 5
   ///Program Name: Individual Digit
   ///File Name: IndividDig.java
   ///Date Finshed: 5/17/16
   
   public class IndividDig
  {
	public static void main( String[] args )
	{
        for ( int x=1; x < 10; x++ )
        {
          for ( int y=1; y < 10 ; y++  )
		  {
            int c = y + x;
            
                System.out.println( x + ""+ y + ", " + x + " + " + y + " = " + (x + y));
		  }
        }
     
   }
  }


        
        
        
    

Picture of the output

Assignment 116