一个整数,它加上100和加上268后都是一个完全平方数,请问该数是多少? 设定的范围为0到10000 x=0 while(x<=10000): if (x+100)**0.5%1==0 and (x+268)**0.5%1==0: print(x) x=x+1