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>]]


In computer programming, a variable is a storage location paired with an associated symbolic name (an identifier) which contains a value.<ref>https://en.wikipedia.org/wiki/Variable_(computer_science)</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).  
 
In other words, '''a variable is a storage location for data'''. Variables have names. Some computer languages mandate you assign a [[data type]] to variables.  
 


<syntaxhighlight lang="php">
  if player_guess == secret_number:
        print("You won in " + str(guess) + " guesses!")
     
        play_again = raw_input("Do you want to play again? ")
        if play_again == "y" or play_again == "Y" or play_again == "yes":
            guess = 0
            game = game + 1
        break
    elif player_guess < secret_number:
        print("That is a bit to low")
    elif player_guess > secret_number:
        print("That is a bit to high")v
</syntaxhilight>
== A video ==  
== A video ==  
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).
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).

Revision as of 21:04, 18 September 2016

Programming basics[1]

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

<syntaxhighlight lang="php">

 if player_guess == secret_number:
       print("You won in " + str(guess) + " guesses!")
      
       play_again = raw_input("Do you want to play again? ")
       if play_again == "y" or play_again == "Y" or play_again == "yes":
           guess = 0
           game = game + 1
       break
   elif player_guess < secret_number:
       print("That is a bit to low")
   elif player_guess > secret_number:
       print("That is a bit to high")v

</syntaxhilight>

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]