我需要编写一个程序,在Java中输出两个输入值(X
和Y
)之间的所有回文完美正方形:
Enter the starting point X: Enter the ending point Y: The palindromic perfect squares are as follow:
答案 0 :(得分:2)
您需要将问题分解为组件:
至于I / O,Java中有许多替代方案。对于这样简单的事情,Scanner
可能效果最好。
一旦有了两个整数x
和y
,就需要对它们定义的范围内的所有整数执行某个测试。一个简单的for
-loop应该这样做。
现在您需要检查您遇到的每个整数...
StringBuilder
)。