题解 | #守形数#

守形数

https://www.nowcoder.com/practice/99e403f8342b4d0e82f1c1395ba62d7b

#include <stdio.h>
void check(int temp){
    int a=temp*temp;
    int max=1;
    while(1){
        if(temp/max==0){
            break;
        }else{max*=10;}
    }
    a=a%max;
    if(a==temp){printf("Yes!");}
    else{printf("No!");}
}
int main() {
    int temp;
    while(scanf("%d",&temp)!=EOF){
        check(temp);
    }
    return 0;
}

全部评论

相关推荐

qz鹿:*** 祝他毕业就失业
点赞 评论 收藏
分享
11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务