華為OJ 自守數

2021-07-22 15:32:02 字數 709 閱讀 8454

自守數

自守數是指乙個數的平方的尾數等於該數自身的自然數。例如:252 = 625,

762 = 5776

,93762 = 87909376

。請求出

n以內的自守數的個數

介面說明

/*功能

: 求出

n以內的自守數的個數

輸入引數:

int n

返回值:

n以內自守數的數量。*/

public static int calcautomorphicnumbers( int n)

輸入描述:

int型整數

輸出描述:

n以內自守數的數量。

輸入例子:

2000

輸出例子:8

解答**:

#include#include#include#include#include#include#includeusing namespace std;

string convertostring(long x)

else break;

} if(j==-1)

return 1;

return 0;

}int main()

cout<

華為oj 自守數

問題描述 自守數是指乙個數的平方的尾數等於該數自身的自然數。例如 25的平方 625,76 的平方 5776,9376 的平方 87909376。請求出n以內的自守數的個數 介面說明 功能 求出n以內的自守數的個數 輸入引數 intn 返回值 n以內自守數的數量。public static int ...

華為初級 自守數

描述 自守數是指乙個數的平方的尾數等於該數自身的自然數。例如 25 2 625,76 2 5776,9376 2 87909376.請求出n以內的自守數的個數 介面說明 原型 unsigned int calautomorphicnumbers unsigned int n 輸入引數 unsigne...

華為機試 自守數

題目描述 自守數是指乙個數的平方的尾數等於該數自身的自然數。例如 25 2 625,76 2 5776,9376 2 87909376。請求出n以內的自守數的個數,例如 輸入 2000 輸出 8 實現 while true try count 0 a input print type a b len...