1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-23 15:48:42 +00:00
202401-programming-assignments/【实践课外】10.函数1/7-1 寻找自守数.md

36 lines
717 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 7-1 寻找自守数
所谓自守数(也称守形数),是指其平方数的低位部分恰为该数本身的自然数。例如:$$25^2 = 625$$因此25是自守数。0 和 1 也算自守数。)
请编写程序输出指定范围内的所有自守数。若指定范围内不存在自守数则输出None。
#### 输入格式
正整数 $$a$$ 和 $$b$$, 且 $$a \leq b \leq 10000$$
#### 输出格式
若 $$[a, b]$$ 内存在自守数则按由小到大的顺序输出每行输出一个自守数若不存在自守数则输出None。
#### 输入样例1
```in
10 80
```
#### 输出样例1
```out
25
76
```
#### 输入样例2
```in
400 600
```
#### 输出样例2
```out
None
```