Create a java file Casting.java and implement a method that:
- Receives 2 integers
- Divides the two ints
- Prints the result
The trick here is that we want the division of the two ints to result in a double! Casting values to doubles will be necessary to solve this exercise. Here is an example:
x = 3
y = 4
Output => 0.75
Save your file here: .../APCSA_1/apcsa-assignments-YourUsername/classwork/04_casting/Casting.java