标签:
题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?
public class lianxi13 { public static void main(String[] args) { for (int n = -100; n <= Integer.MAX_VALUE; n++ ) { if (Math.sqrt(n+100) % 1 == 0) { if (Math.sqrt(n+268) % 1 == 0) { System.out.println("所求的数字为:" +n); } } } } }
题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?
标签:
原文地址:http://www.cnblogs.com/sosolili/p/4970583.html