Ben Homework 1

Please complete this homework before next class.


Variables Practice

1. Create a float variable that equals 15.5. Call it whatever you like
Increase the value of that variable by 2 and then print the result.

2. Create an integer variable, x, that equals 10. Decrease the
value of the variable by 20, and print the result.

3. Create a String variable called name, and set it equal to your name.
Print, "Hello Mr." the variable name (The result should be Hello Mr. Ben)

4. Create two integer variables x, and y. Set them equal to 10 and 15 respectively.
Print x times y

Game Programming Practice

1. First, open a new processing window. Create the setup and
draw functions. Try to do this from memory, if you can't,
look at another example and copy the code by hand.

2. Set the window size to be 800 by 600 (in the setup function).

3. In the draw function, draw a circle at x=100, y=100, with a size
100 by 100.

3. Add code so that a rectangle at the position 50, 50 with a
width of 100 and height of 10 is drawn.

4. Use the text() function to draw the text, "Poop!" at
the center of the screen

Game Improvements : these are hard, do your best

1.) Try to modify your game's code so that the size of the player
decreases slowly over time. That way if they dont eat they disappear

2.) Try to modify your game so that when your score is greater than 10000
the screen shows, "You win!" in the center.