Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/odilson-dev/problem-solving
Solving problem using a Pseudocode
https://github.com/odilson-dev/problem-solving
Last synced: 2 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-27T18:42:16.000Z (about 1 year ago)
- Last Synced: 2024-05-17T15:26:42.470Z (6 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