| Pascal |
C, JavaScript |
VBScript |
| |
if Condição igual a Verdadeiro then
Instrução1.1;
|
if (Condição igual a Verdadeiro)
Instrução1.1;
|
if Condição igual a Verdadeiro then
Instrução1.1
end if
|
| |
| |
if Condição igual a Verdadeiro then
Instrução1.1
else
Instrução2.1;
|
if (Condição igual a Verdadeiro)
Instrução1.1;
else
Instrução2.1;
|
if Condição igual a Verdadeiro then
Instrução1.1
else
Instrução2.1
end if
|
| |
| |
if Condição igual a Verdadeiro then begin
Instrução1.1;
Instrução1.2;
...
Instrução1.n;
end;
|
if (Condição igual a Verdadeiro) {
Instrução1.1;
Instrução1.2;
...
Instrução1.n;
}
|
if Condição igual a Verdadeiro then
Instrução1.1
Instrução1.2
...
Instrução1.n
end if
|
| |
| |
if Condição igual a Verdadeiro then begin
Instrução1.1;
Instrução1.2;
...
Instrução1.n;
end
else begin
Instrução2.1;
Instrução2.2;
...
Instrução2.n;
end;
|
if (Condição igual a Verdadeiro) {
Instrução1.1;
Instrução1.2;
...
Instrução1.n;
}
else {
Instrução2.1;
Instrução2.2;
...
Instrução2.n;
}
|
if Condição igual a Verdadeiro then
Instrução1.1
Instrução1.2
...
Instrução1.n
else
Instrução2.1
Instrução2.2
...
Instrução2.n
end if
|