First page Back Continue Last page Graphics

IF – THEN STATEMENT

  • if (condition)
  • {
  • // statement(s) <--- THEN
  • }
  • Condition can be any expression that returns a value of true or false.
  • Condition true implies execute statement(s)
  • Condition false implies do nothing