User Tools

Site Tools


en:if

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:if [2016/01/01 22:41]
127.0.0.1 external edit
en:if [2020/03/02 22:43] (current)
122.160.95.11 [If / Then (Statement)]
Line 1: Line 1:
 ===== If / Then (Statement) ===== ===== If / Then (Statement) =====
 +INPUT "MARKS", M
 +IF M<75 THEN PRINT "ADMIT"
 +END IF
 ==== Format ==== ==== Format ====
-**if** //boolean_expr// **then** //compound_statement//\\ +**if** [[booleanexpressions|boolean_expression]] **then** [[programsyntax|statement]]\\ 
-**if** //boolean_expr// **then** //compound_statement// **else** //compound_statement// \\+**if** [[booleanexpressions|boolean_expression]] **then** [[programsyntax|statement]] **else** [[programsyntax|statement]] \\ 
 +**if** [[booleanexpressions|boolean_expression]] **then** [[compoundstatementprogramsyntax|compound_statement]]\\ 
 +**if** [[booleanexpressions|boolean_expression]] **then** [[compoundstatementprogramsyntax|compound_statement]] **else** [[compoundstatementprogramsyntax|compound_statement]] \\
  
 ---- ----
-**if** //boolean_expr// **then**\\ +**if** [[booleanexpressions|boolean_expression]] **then**\\ 
-//statement(s)//\\+[[programsyntax|statement(s)]]\\
 **end if** **end if**
  
 ---- ----
-**if** //boolean_expr// **then**\\ +**if** [[booleanexpressions|boolean_expression]] **then**\\ 
-//statement(s)//\\+[[programsyntax|statement(s)]]\\
 **else**\\ **else**\\
-//statement(s)//\\+[[programsyntax|statement(s)]]\\
 **end if** **end if**
  
 ==== Description ==== ==== Description ====
-A single line IF evaluates //booleanexpr//, when true the //statement(s)// following the then is executed, otherwise execution continues on the next line. There are also two forms of a multi-line if statement, one with a true block and one with a true and a false block of code to execute.+A single line IF evaluates //booleanexpr//, when true the [[programsyntax|statement(s)]] following the then is executed, otherwise execution continues on the next line. There are also two forms of a multi-line if statement, one with a true block and one with a true and a false block of code to execute.
 ==== Example ==== ==== Example ====
 <code> <code>
en/if.1451713275.txt.gz · Last modified: 2020/02/28 10:46 (external edit)