https://github.com/sabrinemokhtari31/cpp-project-06_max_three_numbers
https://github.com/sabrinemokhtari31/cpp-project-06_max_three_numbers
c-plus-plus cpp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sabrinemokhtari31/cpp-project-06_max_three_numbers
- Owner: sabrinemokhtari31
- Created: 2025-12-22T22:09:38.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-12-22T22:09:53.000Z (7 months ago)
- Last Synced: 2025-12-25T22:21:19.723Z (7 months ago)
- Topics: c-plus-plus, cpp
- Language: C++
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Max of Three Numbers
A C++ program to find the largest of three numbers using nested conditional logic.
## How it works
1. Prompts for three numbers.
2. Compares them using `if-else if-else` structure.
3. Identifies and displays the maximum value.
## Usage
Compile and run:
```bash
g++ 06_max_three_numbers.cpp -o max3
./max3
```