实验五

橙三吉。 提交于 2020-12-10 09:59:30

int Fate(int x);

int main(){
    int m,k,p;
    printf("m=");
    scanf("%d",&m);
    printf("k=");
    scanf("%d",&k);
    while (m<k)
    {
        printf("m must be greater than k, please re-enter\n");
        printf("m=");
        scanf("%d",&m);
        printf("k=");
        scanf("%d",&k);
    }
    p=Fact(m)/Fact(k)*Fact(m-k);
    printf("p=%d\n",p);
    system("pause");
    return 0;
}
int Fact(int x){
    int f=1;
    if(x==0){
        f=1;
    }
    else{
        for(int i=1;i<=x;i++){
        f*=i;
        }
    }
    return f;
}


float Fun(float x,float y);
int main()
{
    float x,y;
    printf("please input two numbers:");
    scanf("%f %f",&x,&y);
    printf("The absolute value of the difference between the two numbers is %f\n",Fun(x,y));
    system("pause");
    return 0;
}
float Fun(float x,float y){
    float z;
    if(x>=y){
        z=x-y;
    }
    else{
        z=y-x;
    }
    return z;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!