CJCoding With Joseph

Strategy Pattern With an Interface

The IOperation interface declares int Apply(int a, int b). Write two strategies, Add (returns a + b) and Multiply (returns a * b), plus an Engine class whose Run(op, a, b) method calls op.Apply(a, b) and returns the result. The tester runs each strategy through the engine. Do NOT write a Main method.

Running Add then Multiply on (6, 4) prints:
10
24

Expected Output:

10
24
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.