Created
February 23, 2025 07:13
-
-
Save msbaek/106832f3d62f40ce574dcee22fd30a2e to your computer and use it in GitHub Desktop.
Divider2.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Divider { | |
public int divide(int dividend, int divisor) { | |
return dividend / divisor; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment