题目如下:
代码如下:
package huawei; public final class Demo { /* Description 判断是否是自守数 Prototype public static boolean isAutoMorphicNum(int num) Input Param num 需要判断的数 Output Param 无 Return Value true 是自守数 false 不是自守数 */ public static boolean isAutoMorphicNum(int num) { /*在这里实现功能*/ String input = num + ""; String power = num * num + ""; if (input.equals(power.substring(power.length() - input.length()))) { return true; } return false; } }
原文:http://blog.csdn.net/yayun0516/article/details/50492340