问题 A: 守形数

问题 A: 守形数
时间限制: 1 Sec 内存限制: 32 MB
献花: 48 解决: 39
[献花][花圈][TK题库]
题目描述
守形数是这样一种整数,它的平方的低位部分等于它本身。
比如25的平方是625,低位部分是25,因此25是一个守形数。
编一个程序,判断N是否为守形数。
输入
输入包括1个整数N,2<=N<100。
输出
可能有多组测试数据,对于每组数据,
输出”Yes!”表示N是守形数。
输出”No!”表示N不是守形数。
样例输入
6
11
样例输出
Yes!
No!

#define _CRT_SECURE_NO_WARNINGS
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;


int main()
{
#ifdef _DEBUG
    //freopen("data.txt", "r+", stdin);
    fstream cin("data.txt");
#endif // _DEBUG


    int Num, Sqrt;
    while (cin >> Num)
    {
        Sqrt = pow(Num,2);
        while (Num && (Sqrt % 10 == Num % 10))
        {
            Sqrt /= 10;
            Num /= 10;
        }
        Num ? (cout << "No!\n") : (cout << "Yes!\n");
    }


#ifdef _DEBUG
    cin.close();
#ifndef _CODEBLOCKS
    system("pause");
#endif // !_CODEBLOCKS
#endif // _DEBUG

    return 0;
}
/**************************************************************
    Problem: 1939
    User: Sharwen
    Language: C++
    Result: 升仙
    Time:2 ms
    Memory:1900 kb
****************************************************************/

你可能感兴趣的:(C/C++,codeup,OJ)