Assignemnt #118 and 119th program

Code

///Name: Derrick Andreasen
///Period: 7
///Program name: 119th Program
///File name: Hund18prog.java
///Date Finished:4/27/2016

import java.util.Scanner;

public class Hund18prog
{
	public static void main( String[] args ) throws Exception
	{
        for(int a =1; a< 10; a++)
        for(int b = 0; b < 10; b++)
        for(int c = 0; c < 10; c++)
        {
            int d = a * 100 + b*10 + c;
            int e = a*a*a;
            int f = b*b*b;
            int g = c*c*c;
            int h = e + f + g;
                
                if(d == h)
                System.out.println(d);
        }
    }
}
    

Picture of the output

Assignment 119