Due 10am, Monday, February 11
In this prelab, you will be working on some of the isses related to the first full lab assignment. Please write up or type up your solutions and upload an electronic copy to Gradescope. Remember: no late prelabs allowed!
Unlike most of the other labs, this one will consist of a number of small programming assignments to give you a chance to become familar with programming in Java.
You may recall from 150 having to draw a Pyramid out of bricks. Well, this time I want you to build a pyramid out of stars! They will be symmetrical and look like:
* *** ***** ******* *********
You and your friend (the computer) will play a guessing game. One of you will pick a number between 1 and 1000. The other one will guess numbers and the other will tell them if they guessed correctly or were too high/low.
You'll also want to think about different ways you might be able to match words on that line. (i.e., do some String matching)