1
Answer

Convert Int[][] to Double[][]?

Chaitanya

Chaitanya

13y
1.6k
1

I have a Int[][] jagged array, and I want to convert it to Double[][] jagged array. Of course I don't want to change the value inside the array for example:

int[2][1] = 10

and when it converted to double,

int[2][1] = 10

So i have value[][] which is type is integer. and i want to convert it to double.


Answers (1)