Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Last active January 3, 2016 16:09
Show Gist options
  • Save hanafiah/8487959 to your computer and use it in GitHub Desktop.
Save hanafiah/8487959 to your computer and use it in GitHub Desktop.
IF a EQUAL TO b AND b EQUAL TO c THEN
PRINT 'The numbers are same';
ELSE
IF a SMALLER THAN b THEN
BEGIN
IF a SMALLER THAN c THEN
PRINT a;
ELSE
PRINT c;
END
ELSE
BEGIN
IF b SMALLER THAN c THEN
PRINT b;
ELSE
PRINT c;
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment