You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class Calculator
- def push(n)
- @args ||= []
- @args << n
- end
-
- def add
- @args.inject(0) { |n, sum| sum + n }
- end
-
- def divide
- @args[0].to_f / @args[1].to_f
- end
- end
|