GrumpyEwok / beep-boop

Epicodus Week 3 - Independent Project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Beep-Boop!

A Counting Game

By Evan Filkins

Description

Beep-Boop is a simple game with mathematical rules. It involves couning.

Specifications

  • Program replaces 0 with "Beep!"
    • Example Input: 0
    • Example Output: "Beep!"
  • Program replaces 1 with "Boop!"
    • Example Input: 1
    • Example Output: "Beep! Boop!"
  • Program replaces 3 with "I'm sorry, Dave. I'm afraid I can't do that."
    • Example Input: 3
    • Example Output: "Beep! Boop! I'm sorry, Dave. I'm afraid I can't do that."
  • Program displays all positive integers (including 0) less than the inputted number in sequential order, up to and including the original number.
    • Example Input: 4
    • Example Output: "Beep! Boop! 2. I'm sorry, Dave. I'm afraid I can't do that. 4."
  • Program replaces inputs containing both 1 and 0 as digits with "Boop!".
    • Example Input: 10
    • Example Output: "Beep! Boop! 2. I'm sorry, Dave. I'm afraid I can't do that. 4. 5. I'm sorry, Dave. I'm afraid I can't do that. 7. 8. I'm sorry, Dave. I'm afraid I can't do that. Boop!"
  • Program allows user to resubmit a new number, either extending or reducing the length of the result.
    • Example Input:
      • 10
      • 4
    • Example output:
      • "Beep! Boop! 2. I'm sorry, Dave. I'm afraid I can't do that. 4. 5. I'm sorry, Dave. I'm afraid I can't do that. 7. 8. I'm sorry, Dave. I'm afraid I can't do that. Boop!"
      • "Beep! Boop! 2. I'm sorry, Dave. I'm afraid I can't do that. 4."

Setup/Installation Requirements

  • Simply clone this repository and host.
  • It is important to note that the application uses a bootstrap.css file for ease of styling, in addition to a regular CSS stylesheet. You may acquire the specific version of Boostrap I used here.

Support and Contact Information

Should any issues arise in the use of this application, feel free to contact me directly.

Technologies Used

HTML, Bootstrap, CSS, JS/jQuery.

License

No licensure.

Copyright (c) 2018 EF

About

Epicodus Week 3 - Independent Project


Languages

Language:JavaScript 61.6%Language:HTML 35.6%Language:CSS 2.9%