https://github.com/yas-siin/answerquestion
https://github.com/yas-siin/answerquestion
command-line java
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/yas-siin/answerquestion
- Owner: YAS-SIIN
- Created: 2024-08-15T14:47:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T15:50:51.000Z (over 1 year ago)
- Last Synced: 2025-03-31T06:24:34.094Z (over 1 year ago)
- Topics: command-line, java
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AnswerQuestion
Language: Java
A Java command line program that gives me two options. One to ask a specific question and the other option is to add questions and their answers
Therefore the following restrictions apply:
- A Question is a String with max 255 chars
- An Answer is a String with max 255 chars
- A Question can have multiple answers (like bullet points)
- If the user asks a question it has to be exactly the same as entered – no “best match”.
- If the user asks a question which is not stored yet the program should print “the answer to life, universe and everything is 42” according to “The hitchhikers guide to the Galaxy”
- If the user asks a question whish is stored the program should print all answers to that question. Every Answer in a separate line
Adding a question looks like:
```
? “” “” “”
Char “?” is the separator between question and answers
Every Question needs to have at least one answer but can have unlimited answers all inside of char “
```
## Example
Adding a question:
What is Peters favorite food? “Pizza” “Spaghetti” “Ice cream”
Asking a question which is in the system:
What is Peters favorite food?
Answers will be
- Pizza
- Spaghetti
- Ice cream
Asking a question which is not in the system:
When is Peters birthday?
Answer will be
- the answer to life, universe and everything is 42