https://github.com/sabrinemokhtari31/cpp-project-01_sum_two_numbers
https://github.com/sabrinemokhtari31/cpp-project-01_sum_two_numbers
c-plus-plus cpp
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sabrinemokhtari31/cpp-project-01_sum_two_numbers
- Owner: sabrinemokhtari31
- Created: 2025-12-22T21:46:21.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-12-22T21:46:26.000Z (7 months ago)
- Last Synced: 2025-12-25T22:21:19.136Z (6 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
# Sum of Two Numbers
A simple C++ program that takes two integers from the user and calculates their sum.
## How it works
1. Program prompts the user to enter two numbers.
2. It stores the input in variables `num1` and `num2`.
3. It calculates the sum and prints it to the console.
## Usage
Compile and run:
```bash
g++ 01_sum_two_numbers.cpp -o sum
./sum
```