Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
15
Task/Integer-comparison/Euphoria/integer-comparison.euphoria
Normal file
15
Task/Integer-comparison/Euphoria/integer-comparison.euphoria
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
include get.e
|
||||
|
||||
integer a,b
|
||||
a = floor(prompt_number("a = ",{}))
|
||||
b = floor(prompt_number("b = ",{}))
|
||||
|
||||
puts(1,"a is ")
|
||||
if a < b then
|
||||
puts(1,"less then")
|
||||
elsif a = b then
|
||||
puts(1,"equal to")
|
||||
elsif a > b then
|
||||
puts(1,"grater then")
|
||||
end if
|
||||
puts(1," b")
|
||||
Loading…
Add table
Add a link
Reference in a new issue