Browse Source

fix: fix operands wrong order (#2097)

* fix: fix typo doOp -> DoOp

* fix: fix operands wrong order
pull/2110/head
zanninso 11 months ago committed by GitHub
parent
commit
5cac7ab11a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      subjects/java/piscine/DoOp/README.md

4
subjects/java/piscine/DoOp/README.md

@ -5,9 +5,9 @@
Create a file named `DoOp.java`.
Write a function `operate` that returns the result of the given arithmetic operation specified in the parameters. The arguments should be passed in the following order:
- The first argument is the right operand
- The first argument is the left operand
- The second argument is the operation sign
- The third argument is the left operand
- The third argument is the right operand
### Expected Functions

Loading…
Cancel
Save