A small multi-language practice project for the classic FizzBuzz programming exercise.
This repository is kept as a simple fundamentals exercise. It focuses on conditional logic, loops, and basic problem solving across different programming languages.
The program checks a range of numbers and prints:
Fizzfor numbers divisible by 3Buzzfor numbers divisible by 5FizzBuzzfor numbers divisible by both 3 and 5- The original number when none of those conditions apply
- JavaScript
- Python
- Java
- C++
This is a completed practice repository that I am keeping as part of my learning history.