Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Problem-Solving
Solving problem using a Pseudocode

PSEUDCOCODE

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