标签:col 判断 mat and sqrt nbsp class 一个 code
1 ‘‘‘ 2 在10000以内判断一个整数,它加上100和加上268后都是一个完全平方数 3 提问:请问该数是多少? 4 ‘‘‘ 5 import math 6 for i in range(10000): 7 m = math.sqrt(i + 100) 8 n = math.sqrt(i + 268) 9 if m * m == i + 100 and n * n == i + 268: 10 print(i)
在10000以内判断一个整数,它加上100和加上268后都是一个完全平方数 3 提问:请问该数是多少?
标签:col 判断 mat and sqrt nbsp class 一个 code
原文地址:https://www.cnblogs.com/JerryZao/p/9418844.html