If...Then...Else: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<pre>
If ''condition'' Then ''statements'' [Else ''elsestatements'']
If ''condition'' Then ''statements'' [Else ''elsestatements'']


If ''condition'' Then
If ''condition'' Then
 
:[''statements'']
                [''statements'']
 
[ElseIf ''condition-n'' Then
[ElseIf ''condition-n'' Then
 
:[''elseifstatements'']]...
                [''elseifstatements'']]...
 
[Else
[Else
 
:[''elsestatements'']]
                [''elsestatements'']]
 
End If
End If
</pre>


== Description ==
== Description ==
Line 25: Line 17:
== Example ==
== Example ==


<pre>
<tabber>
JavaScript=
<syntaxhighlight lang="JavaScript">
// If...Then...Else Example
/* If...Then...Else performs conditional execution */
 
var Who;
if (true) { NSB.Print("TRUE"); } else { NSB.Print("FALSE"); }
if (Who == "Al") {
  NSB.Print("Big Al");
}else if (Who == "Alien") {
  NSB.Print("Alien Probe");
}
</syntaxhighlight>
|-|
BASIC=
<syntaxhighlight lang="vb.net">
Rem If...Then...Else Example
Rem If...Then...Else Example
'If...Then...Else performs conditional execution
'If...Then...Else performs conditional execution
Line 35: Line 43:
       Print "Alien Probe"
       Print "Alien Probe"
End If
End If
</pre>
</syntaxhighlight>
</tabber>


== Output ==
== Output ==

Latest revision as of 16:04, 24 July 2019

If condition Then statements [Else elsestatements]

If condition Then

[statements]

[ElseIf condition-n Then

[elseifstatements]]...

[Else

[elsestatements]]

End If

Description

If...Then...Else is used to conditionally execute a group of statements. The required component, condition, can be any expression that evaluates to TRUE or FALSE. If used inline with no else clause, the statements component is required, otherwise, the statements component is optional. If condition evaluates to TRUE or non-zero, any existing statements are executed, if condition evaluates to FALSE or zero, execution branches to the next existing ElseIf clause to evaluate condition-n,or to the Else clause if it is included.

To execute multiple statements inline, the statements must be separated by a colon (:). If an inline statement consists of a lone procedure call with no arguments, the procedure must be called with empty parenthesis.

Example

// If...Then...Else Example
/* If...Then...Else performs conditional execution */

var Who;
if (true) { NSB.Print("TRUE"); } else { NSB.Print("FALSE"); }
if (Who == "Al") {
   NSB.Print("Big Al");
}else if (Who == "Alien") {
   NSB.Print("Alien Probe");
}

Rem If...Then...Else Example
'If...Then...Else performs conditional execution
Dim Who
If TRUE Then Print "TRUE" Else Print "FALSE"
If Who = "Al" Then
       Print "Big Al"
ElseIf Who = "Alien" Then
       Print "Alien Probe"
End If

Output

TRUE

Related Items

Select Case