Syntax of using elsif Clauses in if Statements : If « Statement « Ruby






Syntax of using elsif Clauses in if Statements



if (condition1)
  code to be executed if condition1 is true
elsif (condition2)

  code to be executed if condition2 is true
else
  code to be executed if condition1 and condition2 are not true

 








Related examples in the same category

1.Conditional Statements
2.Use the if Statement
3.The simple form of an if statement looks like this
4.An if statement with an else clause looks like in general (the else clause is optional)
5.if statement contains several elsif statements
6.write elsif statement a little tighter by using colons after the symbols:
7.The if Statement with constant
8.Use an elsif Clause
9.if and unless also supply the else condition
10.Using else Clauses in if Statements
11.use the multiline if/else option
12.use the ! logical negation operator
13.put any number of lines of code in between the if statement and the end line:
14.nest if logic
15.we dropped then from the if statement.
16.lay out an if statement is by replacing the then with a colon (:)
17.Use if statement to check the user input