so I'm trying to take an int array and reverse every element that has more than three digits. i.e. change 147 -> 741
I'm new to java and do not even know where to start with this.
Here is the array I am trying to do this with.
int codedMessage[] = {334, 384, 105, 222, 61, 2, 175, 228, 114, 235, 241,
213, 206, 3, 321, 152, 214, 137, 224};
Any help is greatly appreciated! Every time I try and look for help I just find stuff on reversing the order of an array because I don't really know how to google my question correctly i guess.