Created
February 20, 2016 19:52
-
-
Save jruels/0585830ee14c89dc6cee to your computer and use it in GitHub Desktop.
Ruby vs Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
def add(): | |
print "Enter the two numbers to Add" | |
A=int(raw_input("Enter A: ")) | |
B=int(raw_input("Enter B: ")) | |
return A + B | |
def sub(): | |
print "Enter the two numbers to Subtract" | |
A=int(raw_input("Enter A: ")) | |
B=int(raw_input("Enter B: ")) | |
return A - B | |
def mul(): | |
print "Enter the two numbers to Multiply" | |
A=int(raw_input("Enter A: ")) | |
B=int(raw_input("Enter B: ")) | |
return A * B | |
def div(): | |
print "Enter the two number to Divide" | |
A=float(raw_input("Enter A: ")) | |
B=float(raw_input("Enter B: ")) | |
return A / B | |
print "1: ADDITION" | |
print "2: SUBTRACTION" | |
print "3: MULTIPLICATION" | |
print "4: DIVITION" | |
print "0: QUIT" | |
while True: | |
CHOICE = int(raw_input("ENTER THE CORRESPONDING NUMBER FOR CALCULATION ")) | |
if CHOICE == 1: | |
print 'ADDING TWO NUMBERS:' | |
print add() | |
elif CHOICE == 2: | |
print 'SUBTRACTING TWO NUMBERS' | |
print sub() | |
elif CHOICE == 3: | |
print 'MULTIPLYING TWO NUMBERS' | |
print mul() | |
elif CHOICE == 4: | |
print "DIVIDEING TWO NUMBERS" | |
print div() | |
elif CHOICE == 0: | |
exit() | |
else: | |
print "The value Enter value from 1-4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_int_values | |
[gets, gets].map{ |s| s.chomp.to_i } | |
end | |
puts "Would you like to [add], [multiply], or [subtract]?" | |
response = gets.chomp | |
case response.downcase | |
when 'add' | |
puts "Which numbers would you like to add?" | |
operator = :+ | |
when 'subtract' | |
puts "Which numbers would you like to subtract?" | |
operator = :- | |
when 'multiply' | |
puts "Which numbers would you like to multiply?" | |
operator = :* | |
end | |
answer = get_int_values.inject(operator) | |
puts "The answer is... #{ answer }" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment