Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
16
Task/Integer-comparison/Action-/integer-comparison.action
Normal file
16
Task/Integer-comparison/Action-/integer-comparison.action
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
PROC Main()
|
||||
INT a,b
|
||||
|
||||
Print("Input value of a:") a=InputI()
|
||||
Print("Input value of b:") b=InputI()
|
||||
|
||||
IF a<b THEN
|
||||
PrintF("%I is less than %I%E",a,b)
|
||||
FI
|
||||
IF a>b THEN
|
||||
PrintF("%I is greater than %I%E",a,b)
|
||||
FI
|
||||
IF a=b THEN
|
||||
PrintF("%I is equal to %I%E",a,b)
|
||||
FI
|
||||
RETURN
|
||||
Loading…
Add table
Add a link
Reference in a new issue