You are viewing a single comment's thread. Return to all comments →
/* Add int max_of_four(int a, int b, int c, int d) here. */ int max_of_four(int x,int y,int z, int w){ if(x>y && x>z && x>w){ return x; }else if(y>x && y>z && y>w){return y; }else if (z>x && z>y && z>w) {return z; }else {return w;}return 0; }
int max_of_four(int a, int b, int c, int d)
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;
}
Seems like cookies are disabled on this browser, please enable them to open this website
Functions in C
You are viewing a single comment's thread. Return to all comments →
include
/* Add
int max_of_four(int a, int b, int c, int d)
here. */ int max_of_four(int x,int y,int z, int w){ if(x>y && x>z && x>w){ return x; }else if(y>x && y>z && y>w){return y; }else if (z>x && z>y && z>w) {return z; }else {return w;}return 0; }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);
}