An open API service indexing awesome lists of open source software.

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

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
```