1 | A variable is a name that you give to a place to store a value in memory. When you declare a variable name, you say what type the values will be. |
2 | Declare 3 variables of type integer: There are many other types: |
3 | |
4 | int x; |
5 | int y; |
6 | int size; |
7 | Or all at once for variables |
8 | of the same type: |
9 | int x, y, size; |
10 | String s; |
11 | Font f; |
12 | Color c; |