// Declare VS Assign // types: int & float & boolean & ------- string (whole | possible decimal) // E = X 10 // boolean - true or false // if day ----- // if night ---- //assign // char c = 'q'; // ((ASCII CODE??)) // void KeyPressed () { //if (keyPressed 'q') {== // = is called ASSIGN OPERATOR EX L = R (R HAD TO BE A VARIABLE) // interger division doesn't round up EX 5 / 7 = 0.714285... = 0 // % can also be division EX 10 % 3 = 3.333333 or (if INT 3) //symbols that relate to int or float --- > < >= <= == != //the output of these operators is a boolean (TRUE or FALSE) //IN JAVA = MEANS ASSIGN not EQUALS // some JAVA operators go left to right, but most go left to right // right to left example would be for exponents 3 to the 2nd to the 5th //READING 1 & 2 & 5 & 7.1-7.4 (6???) // LOOPS AND CONDITIONALS