Browse Source

feat(IntOperations): correct grammar

CON-1801-MARKDOWN-Remove-VirtualBox-restriction-from-projects-with-generic-.iso-VM-images
davhojt 11 months ago
parent
commit
f27877b5c9
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
  1. 10
      subjects/java/piscine/IntOperations/README.md

10
subjects/java/piscine/IntOperations/README.md

@ -4,10 +4,12 @@
Create a file `IntOperations.java`.
Write a function `addTwoIntegers` that returns the sum of two integers passed as parameter.
Write a function `substractTwoIntegers` that returns subtraction of two integers passed as parameter.
Write a function `multiplyTwoIntegers` that returns the multiplication of two integers passed as parameter.
Write a function `divideTwoIntegers` that returns the Euclidian division of two integers passed as parameter. We ignore the divide by 0 case.
Write the following functions:
- `addTwoIntegers` that returns the sum of two integers passed as parameter.
- `substractTwoIntegers` that subtracts the second parameter from the first parameter, and returns the result.
- `multiplyTwoIntegers` that returns the multiplication of two integers passed as parameter.
- `divideTwoIntegers` that returns the Euclidian division of two integers passed as parameter. We ignore the divide by 0 case.
### Expected Functions

Loading…
Cancel
Save