Can you make a calculator in any language which DOES NOT use the +
, -
, *
, /
operators.
Anyone who does will get a shoutout on my next Can you post.
Can you make a calculator in any language which DOES NOT use the +
, -
, *
, /
operators.
Anyone who does will get a shoutout on my next Can you post.
For further actions, you may consider blocking this person and/or reporting abuse
Too lazy to figure out how to deal with the remainder in division, but here is a cut at a calculator in Ruby that doesn't use math operators.
Wow .sum is a function in Ruby? That made it so easy.
Yeah, that's sort of a cheat — but Ruby's like that 🤣
eval("10 + 10")
also would have been a quick answer here, but that seemed just a bit too easy.Oh- wow
Okay, let's do this without using
sum
oreval
then 🙃I'm kind of not happy with
div
, but hard to do it nicely without introducing fractions.cc @ben
Nice stuff!
Woah this is really nice!
Ben's technique but in python lol
Is that a cheat lmao?
Ofc lol
Great!!!