nested if in delphi code example
Example: if then else in delphi
j := 50;
if j >= 0 then
if j = 100 then Caption := 'Number is 100!'else
Caption := 'Number is NEGATIVE!';v
j := 50;
if j >= 0 then
if j = 100 then Caption := 'Number is 100!'else
Caption := 'Number is NEGATIVE!';v