Input 4 integers and the output is the maximum one

#include
int max(int x,int y, int z, int p){
    int maxv1, maxv2, maxn;
    if(x>=y)
    maxv1=x;
    else
    maxv1=y;
    if(z>=p)
    maxv2=z;
    else
    maxv2=p;
    if(maxv1>maxv2)
    maxn=maxv1;
    else
    maxn=maxv2;
    return maxn;
}
int main (void)
{
    int a,b,c,d;
    scanf("%d%d%d%d",&a,&b,&c,&d);
    printf("%d",max(a,b,c,d));
    system("pause");
    return 0;
}

0 comments:

Post a Comment