Computer Applications

Write a statement that defines a one-dimensional array called amount of type double that holds two elements.

Java Arrays

5 Likes

Answer

double amount[] = new double[2];

Answered By

1 Like


Related Questions