Pascal <-> Basic | Conditional statement
Pascal Used keywords: if else then
if then, if then else
Description
if condition then statement1;
if condition then statement1 else statement2;
Input
- condition - Logical value The condition can be any expression
- statement1 - statements
- statement2 - statements
Examples
Pascal
Conditional statement the possible of use:if i > 10 then
begin
i :=10; i := i - 1; inc(i);
end;
if i < 10 then i := 10 else i:=1;
.
Basic Used keywords: if else then end
if then end if, if then else end if
Description
if condition then
statements1
end if
if condition then
statements1
else
statements2
end if
Input
- condition - Logical value The condition can be any expression
- statements1 - statements
- statements2 - statements
Examples
Basic
Conditional statement the possible of use:if i > 10 then
i =10
i = i - 1
i=i+1
end if
if i < 10 then
i = 10
else
i=1
end if
Conditional statement in another programming language:
Differences to:
Share