Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/happyrao78/codsoft
"Explored fundamental C++ concepts with three console-based projects: a Number Guessing Game, Simple Calculator, and a To-Do List Manager. Enhancing my coding skills by implementing interactive and practical solutions."
https://github.com/happyrao78/codsoft
cpp oops-in-cpp
Last synced: 24 days ago
JSON representation
"Explored fundamental C++ concepts with three console-based projects: a Number Guessing Game, Simple Calculator, and a To-Do List Manager. Enhancing my coding skills by implementing interactive and practical solutions."
- Host: GitHub
- URL: https://github.com/happyrao78/codsoft
- Owner: happyrao78
- Created: 2024-02-08T19:56:31.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-02-08T20:11:47.000Z (11 months ago)
- Last Synced: 2024-02-08T21:41:17.221Z (11 months ago)
- Topics: cpp, oops-in-cpp
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **Number Guessing Game in C++**
This simple C++ program lets users guess a randomly generated number (1-100). The program provides feedback on whether the guess is too high or low, prompting users to continue until they correctly guess the number. Ideal for learning basic input/output and control flow in C++.Enjoy the game!# **Simple Calculator in C++**
This C++ program performs basic arithmetic operations (addition, subtraction, multiplication, division). Users input two numbers and choose an operation. A straightforward console-based calculator for learning fundamental C++ concepts. Compile the code with a C++ compiler and run for quick calculations.Happy calculating!# **To-Do List Manager in C++**
This console-based program lets users manage tasks efficiently. Add tasks, view the list with completion status, mark tasks as completed, and remove them. Ideal for learning C++ basics. Compile with a C++ compiler and run for an organized to-do list experience.Stay organized!*To run the programs:*
1. Compile the code using a C++ compiler.
2. Execute the compiled program.
3. Follow on-screen prompts to manage your code.