create an array of double number in Java
Answers
Answered by
0
Answer:
To create the array itself, you have to use the new operator, which we first saw in Section 3.2: counts = new int[4]; values = new double[size];
Explanation:
mark me as brainlist please
Answered by
1
An Array of double data type can be created by,
double[ ] array_name = new double[<length>];
Similar questions