多选题
A method needs to be created that accepts an array of floats as an
argument and does not return any variables. The method should be called
setPoints. Which of the following method declarations is correct?
- A. setPoints(float[] points) {...}
- B. void setPoints(float points) {...}
- C. void setPoints(float[] points) {...}
- D. float setPoints(float[] points) {...}