Quick actions

cmd+k|ctrl+k

Navigation

Languages

Functions

Snippet info

Language

Cpp

Visibility

public

Author

hafizewp

Created

2019-12-27T03:07:23Z

Updated

2019-12-27T03:07:23Z

#include <iostream>
#include <cstdio>
using namespace std;

int max_of_four(int a, int b, int c, int d)
{
    int max = a;
    if(b > max)
        max = b;
    if(c > max)
        max = c;
    if(d > max)
        max = d;
    return max;
}


int main() {
    int a, b, c, d;
    scanf("%d %d %d %d", &a, &b, &c, &d);
    int ans = max_of_four(a, b, c, d);
    printf("%d", ans);
    
    return 0;
}

INFO