12. Show the Java code to declare and allocate an array with 497 elements of type double.
13. Print i as long as i is less than 6.
Question 12
double [] arr = new double[497];
Question 13.
for(int i=0; i<6; i++){ System.out.println(i); }
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments