Conditionals: Difference between revisions

From Computer Science Wiki
No edit summary
Line 1: Line 1:
[[file:arrows.png|right|frame|Programming basics<ref>http://www.flaticon.com/</ref>]]
[[file:arrows.png|right|frame|Programming basics<ref>http://www.flaticon.com/</ref>]]


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).  
A conditional statement evaluates an expression and executes instructions depending on the outcome of the evaluation. Conditionals depend on [[operators]] to evaluate if an expression is true or false. Can you think where else you have seen how computers process logic?


An example of a simple conditional in PHP can be found below:  
An example of a simple conditional in PHP can be found below:  

Revision as of 09:16, 22 September 2016

Programming basics[1]

A conditional statement evaluates an expression and executes instructions depending on the outcome of the evaluation. Conditionals depend on operators to evaluate if an expression is true or false. Can you think where else you have seen how computers process logic?

An example of a simple conditional in PHP can be found below:

<?php
# this file  is used to teach the VERY BASICS of conditions in php

$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.

See Also[edit]

References[edit]