【Java】1~1000の中のすべての水仙の花の数を求めます

431 ワード

        
```public class test {
 private static void flower() {
        for (int i = 100; i < 1000; i++) {
            int a = i / 100;
            int b = (i / 10) % 10;
            int c = i % 10;
            if(i==Math.pow(a,3)+Math.pow(b,3)+Math.pow(c,3)) {
                System.out.println(i);
            }
        }
    }
    public static void main(String[] args) {
        flower();
    }
}