118

Code

  ///Name: Conner Wygaerts
///Period: 6
///Project Name: Armstrong
///File Name: Armstrong.java
///Date Finished: 5/5/16

import java.util.Scanner;

public class Armstrong
{
    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

YourInitials.html