Java经典编程题50道之十三

一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?

public class Example13 {
    public static void main(String[] args) {
        number();
    }

    public static void number() {
        for (int x = 1; x < 100000; x++) {
            if (Math.sqrt(x + 100) % 1 == 0 && Math.sqrt(x + 268) % 1 == 0) {
                System.out.println(x + "加100是一个完全平方数,再加168又是一个完全平方数");
            }
        }
    }
}

posted @ 2017-06-02 22:25  本宫在,尔等都是妃  Views(145)  Comments(0Edit  收藏  举报