Welcome to my College AP Projects repository! This repository contains a collection of various C++ programs I've worked on. Each program demonstrates specific concepts and techniques in C++ programming, from simple algorithms to more advanced data structures and object-oriented principles.
This repository showcases a variety of C++ programs that explore different programming paradigms such as loops, conditional statements, data structures, and object-oriented programming. The programs cover areas from basic algorithms to more complex problem-solving techniques.
- Files:
library.cpp
,library_oop.cpp
- Description: A simple library management system where users can add, search, lend, return, and sort books. The program has been implemented both using traditional C++ structures and object-oriented style.
- Files:
storage.cpp
,storage-oop.cpp
- Description: A storage management system that allows users to add, delete, and search for goods in a storage facility. It tracks goods, their amounts, and prices.
- Files:
student.cpp
,student_oop.cpp
- Description: This program records students’ grades, calculates averages, and determines those who excel and those on probation based on their grades.
- Files:
university_libraries.cpp
- Description: A library management system for a university. Users can add, delete, search, borrow, and return books in both central and college-specific libraries.
- Files:
personel.cpp
- Description: This program records information about personnel, including their names, personal codes, salaries, and children. It also identifies personnel with low salaries and more than two children.
- Files:
shop.cpp
- Description: A shop management system where users can insert, delete, search for goods, and process sales and returns. It also manages a factor system to track sales.
To compile and run any of the programs in this repository, follow these steps:
- Clone the repository to your local machine:
git clone https://github.com/YourUsername/CPlusPlusProjects.git cd CPlusPlusProjects
- Compile the desired file using a C++ compiler like
g++
:g++ filename.cpp -o outputfile
- Run the compiled file:
./outputfile