Write the format of the IF... THEN ... ELSE statement.
Answers
Answered by
1
Answer:
hiiiiiiiiiiiiiiiiiiiiiiiiii
Answered by
0
Answer:
The if / then statement is a conditional statement that executes its sub-statement, which follows the then keyword, only if the provided condition evaluates to true: if x < 10 then x := x+1; In the above example, the condition is x < 10 , and the statement to execute is x := x+1 .
Explanation:
hope it will help you
Similar questions