change the value of a specific element

PHOTO EMBED

Mon Sep 26 2022 20:55:55 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

//

    int [] arr1 = {1,2,3,4,5,6,7,8,9,10};

    arr1[1] = 22;

    System.out.println (arr1[3]);
  }
}
content_copyCOPY