Write the code for invoking a method named sendTwo. There are two arguments for this method : a double and an int . Invoke the method with the double value of 15.955 and the int value of 133.
LANGUAGE: JAVA
CHALLENGE:
Write the code for invoking a method named sendTwo. There are two arguments for this method : a double and an int . Invoke the method with the double value of 15.955 and the int value of 133.
Assume that sendTwo is defined in the same class that calls it.
SOLUTION:
sendTwo(15.955, 133);