标签:code 多少 for github com blank http nbsp out
题目:一个整数,它加上100后是一个完全平方数,加上168又是一个完全平方数,请问该数是多少?
for(int i=0;i<=100000;i++){ if(Math.sqrt(i+100)%1==0&&Math.sqrt(i+268)%1==0){ System.out.println(i); } }
标签:code 多少 for github com blank http nbsp out
原文地址:http://www.cnblogs.com/aeolian/p/7801536.html