https://github.com/odilson-dev/problem-solving
Solving problem using a Pseudocode
https://github.com/odilson-dev/problem-solving
Last synced: 4 months ago
JSON representation
Solving problem using a Pseudocode
- Host: GitHub
- URL: https://github.com/odilson-dev/problem-solving
- Owner: odilson-dev
- Created: 2023-08-27T18:07:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-27T18:42:16.000Z (almost 2 years ago)
- Last Synced: 2025-02-23T20:52:44.596Z (4 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Problem-Solving
Solving problem using a PseudocodePSEUDCOCODE
When a user inputs a number
Loop from 1 to the entered number
If the current number is divisible by 3 then print "Fizz"
If the current number is divisible by 5 then print "Buzz"
If the current number is divisible by 3 and 5 then print "FizzBuzz"
Otherwise print the current number