Conditionals: Difference between revisions
Mr. MacKenty (talk | contribs) No edit summary |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 5: | Line 5: | ||
An example of a simpl conditional in PHP: | An example of a simpl conditional in PHP: | ||
<syntaxhighlight lang="php" > | <syntaxhighlight lang="php" linenumbers="yes"> | ||
<?php | |||
# this file | |||
$secret_number = 54; | $secret_number = 54; | ||
if $player_guess == | $player_guess = 54; | ||
if ($player_guess == $secret_number){ | |||
echo "You guessed it!"; | |||
} elseif ($player_guess >= $secret_number) { | |||
echo "a bit high..."; | |||
} elseif ($player_guess <= $secret_number) { | |||
echo "a bit low..."; | |||
} | |||
?> | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 21:23, 18 September 2016
A conditional statement evaluates an expression and executes instructions depending on the outcome of the evaluation. Most of the time, the evaluation is boolean (true or false).
An example of a simpl conditional in PHP:
<?php
# this file
$secret_number = 54;
$player_guess = 54;
if ($player_guess == $secret_number){
echo "You guessed it!";
} elseif ($player_guess >= $secret_number) {
echo "a bit high...";
} elseif ($player_guess <= $secret_number) {
echo "a bit low...";
}
?>
A video[edit]
This video references the C programming language and scratch, but the ideas about conditionals are excellent. In the case of conditionals, PHP and C share similar syntax (but not exact).
Standards[edit]
- Define the terms: variable, constant, operator, object.