We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Functions
- Discussions
Functions
Functions
Sort by
recency
|
1975 Discussions
|
Please Login in order to post a comment
include
include
using namespace std;
int max_of_four(int a, int b, int c, int d){ int max = 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);
}
YOU HAVE TO STORE GRT NUM IN INT AND THEN RETURN IT
include
include
using namespace std;
/* Add
int max_of_four(int a, int b, int c, int d)
here. */ int max_of_four(int a, int b, int c, int d) { int great; if( a>b && a>c && a>d) { great =a; } else if(b>a && b>c && b>d) { great =b; } else if(c>a && c>b && c>d) { great = c; } else{}
include
include
using namespace std;
int max_of_four(int a, int b, int c, int d) {
}
int main() {
}
int max_of_four(int a,int b,int c,int d){ int answ = max({a,b,c,d}); return answ; }