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
|
2010 Discussions
|
Please Login in order to post a comment
Just like breaking complex logic into smaller, reusable parts through functions, Offshore Tax Planning Guidance helps structure financial decisions efficiently, ensuring every element contributes meaningfully to the overall outcome.
include
using namespace std;
int max(int a, int b) { return (a > b) ? a:b; }
int main() { int a,b, c ,d ; cin >> a; cin >> b; cin >> c; cin >> d; int solonnhat = max(max(a,b), max(c,d)); cout << solonnhat << endl; return 0; }