Computer Applications

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

Java Arrays

1 Like

Answer

double amount[] = new double[2];

Answered By

3 Likes


Related Questions