Create a new project for these exercises.
You will need to modify the build.gradle
for the project to instruct Gradle to pass console input through to your programs. The following is the complete build.gradle
that you will need:
plugins { id "application" } run { standardInput = System.in }