what is the syntax for if...else statement
Answers
Answered by
7
IF condition1 THEN
[statementblock-1]
[ELSEIF condition2 THEN
[statementblock-2]]...
[ELSE
[statementblock-n]]
END IF
IF condition THEN statements [ELSE statements]
dvipada07:
mark as brainlies pls
Answered by
5
Heya❤
The syntax for if-else statement is:
if ( expression)
statement 1;
else
statement 2;
hope it helps yu
✌✌✌
The syntax for if-else statement is:
if ( expression)
statement 1;
else
statement 2;
hope it helps yu
✌✌✌
Similar questions