Help me with a scoring system?

You define a variable by entering the variable type. (int, float, char, String, ArrayList, boolean,…) simple variables are those that start with lower case (int, float, char, boolean,…).

int i = 15;
float c = width;
int score = 0;

structure:
[type] [name] = [value]