This repository is to help students learn the basics of the Java programming language.
- Create a todo list application [Answer]
- Prompt the user to input a "task to do" though the terminal
- Using a loop, save user entry into a List
- Display the entire list when the user types, "print"
- Create a calculator application [Answer] [Advanced Answer]
- Prompt the user to input a number though the terminal
- Save first entry into a variable
- Prompt the user to input a mathematical operation though the terminal
- Save second entry into a variable
- Prompt the user to input a number though the terminal
- Save third entry into a variable
- Calculate answer to equation and display the result