https://github.com/dbeewms/logica-y-algoritmos
Example and Practical Exercises from the Logic and Algorithms Class in C, C++, and PSeInt, First Semester, Universidad Americana (UAM).
https://github.com/dbeewms/logica-y-algoritmos
algorithms c cpp programming-logic pseint
Last synced: 17 days ago
JSON representation
Example and Practical Exercises from the Logic and Algorithms Class in C, C++, and PSeInt, First Semester, Universidad Americana (UAM).
- Host: GitHub
- URL: https://github.com/dbeewms/logica-y-algoritmos
- Owner: DBeewms
- License: mit
- Created: 2024-12-12T11:26:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-13T18:17:15.000Z (over 1 year ago)
- Last Synced: 2025-06-08T05:10:16.727Z (12 months ago)
- Topics: algorithms, c, cpp, programming-logic, pseint
- Language: C++
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README-English.md
- License: LICENSE
Awesome Lists containing this project
README
# Logic and Algorithms
Welcome to the **Logic-Y-Algorithms** repository, where you will find a collection of practical exercises and examples developed in **C**, **C++**, and **PSeInt** during my first semester in Information Systems Engineering at the **American University (UAM)**.
---
## š Versión en EspaƱol
Este archivo tambiĆ©n estĆ” disponible en EspaƱol. Puedes acceder a la versión en EspaƱol [aquĆ](README.md).
---
## Repository Description
### Exercises in C, C++, and PSeInt
This repository contains a series of practical exercises and examples to help you understand the basic concepts of programming logic and algorithms. The exercises are implemented in three different languages:
- **C**: A low-level programming language, ideal for understanding the fundamentals of computing.
- **C++**: An extension of C that adds object-oriented features.
- **PSeInt**: A tool for learning to program in a simple way, especially designed for beginners.
---
## Repository Structure
The repository is organized as follows:
- **Examples**: Contains basic code examples in C, C++, and PSeInt. Basic problems to understand the structure of an algorithm.
- **Practical Exercises**: Includes a series of solved exercises and challenges for you to practice. More complex challenges to help you improve your programming skills.
---
## Code Examples
Below, you will find a basic example of code in each language:
### C
```c
#include
int main() {
printf("Hello, world in C!\n");
return 0;
}
```
### C++
```cpp
#include
int main() {
std::cout << "Hello, world in C++!" << std::endl;
return 0;
}
```
### PSeInt
```pseint
Algoritmo HolaMundo
Escribir "Hello, world in PSeInt!"
FinAlgoritmo
```
---
## Screenshots
Below, you will find the logos of the languages used in this repository:
These logos represent the C, C++, and PSeInt languages, which are the main languages used in this repository.
---
## How to Contribute
Your contribution is welcome! If you want to add new exercises, fix errors, or improve the documentation, follow these steps:
1. **Fork** the repository.
2. Create a new branch (`git checkout -b feature/new-feature`).
3. Make your changes and commit them (`git commit -m "Add new feature"`).
4. Push your changes to your repository (`git push origin feature/new-feature`).
5. Open a **pull request** on GitHub.
---
## License
This project is under the MIT license. Check the [LICENSE](LICENSE) file for more details.
---
Thank you for visiting this repository! I hope you find this material useful for your learning. š
---
## Footnotes
Footnote 1: This repository was created to document practical exercises and examples from the Logic and Algorithms class. It also aims to support UAM students in their learning of logic and algorithms.
Footnote 2: If you find any errors or have suggestions, feel free to open an issue or submit a pull request.