Declare two double variables , one named length with a value of 3.5 and the other named width with a value of 1.55.

LANGUAGE: JAVA

CHALLENGE:

Declare two double variables , one named length with a value of 3.5 and the other named width with a value of 1.55.

SOLUTION:

double length = 3.5;
double width = 1.55;