C语言判断质数,回文数,勾股数,水仙花数

判断质数:

int judgement(int n){
    int i;
    for(i=2;i<=n/2;i++){
        if(n%i==0)
            return 0;
    }
    return 1;
    
}
//1为质数,0为合数。

判断回文数:

int judgement(int n){
    int copy=n;
    int temp=0;
    while(copy){
        temp=temp*10+(copy%10);
        copy/=10;
    }
    if(temp==n) return 1;
    return 0;
}
//返回1为回文数。

判断勾股数:

int judgement(int n){
    int x,y;
    x=1; y=n-1;
    while(x<=y){
        if(x*x+y*y>n*n) y--;
        else if(x*x+y*y<n*n) x++;
        else return 1;
    }
    return 0;
}
//返回1是勾股数

判断水仙花数:

#include <stdio.h>
#include <math.h>
int judgement(int n){
    int i=n,j=n;
    int count=0,x=0;
    int a[20]={0};
    int sum=0;
        while(i){
            count++;
            i=i/10;
        }//算输入数字的位数
        while(x<count){
            a[x]=j%10;
            j/=10;
            x++;
        }//把输入数字分别储存在a数组中
        for(x=0;x<count;x++){
            sum+=pow(a[x],count);
        }
        if(n==sum)
        return 1;
        else return 0;
    }
//返回1为水仙花数

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值