Download PowerPoint Slides

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project

Document related concepts
no text concepts found
Transcript
… Explanation of Code ...
Question: If “=“ means “assign the value of the
expression on the right to the variable on the left,”
how do we indicate “equals”?
Answer: use a double equals (“==“)
Example: check to see if the character entered is ‘y’:
if (answerLetter == 'y')
» the value inside the parentheses will be True if the
letter ‘y’ was typed in, otherwise it will be False (if
any other letter was typed in)
Chapter 1
Java: an Introduction to Computer Science & Programming - Walter Savitch
21