I wanna do something like,
if input is ' * ' multiply two digits,
if input is ' / ' divide the two digits
and so on for addition and subtraction symbols.
|
closed as not a real question by Sean Owen, monksy, Soner Gönül, Mac, 卵が好き Feb 21 at 21:11
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
and so on ... |
|||
|
|
|
Here a method that can help you with that:
If the second input is 0 when dividing you will get an Exception(You cannot divide by zero) so you need to handle that somehow. |
|||
|
|
If the input is a character, you can use a
There are a ton of ways this can be implemented, including an action pattern where there's a hash of input characters/strings to command handlers, then you can avoid big conditionals altogether. Or you could build a real parser and define this behavior in a parser DSL. |
|||||||
|
|
I'd go the object-oriented way. Define an
Create several implementations of this interface and put them into a map where the key is the operator symbol. Now use the map in your method something like this:
(if int isn't precise enough for your needs, use a different type) |
||||
|
|
|
A strange lot of answers. Try this:
|
|||
|
|