I need to write a set of variables:
int var1,var2,var3
var4=new int[10], var5=new int[10], var6=new int[10]
var7=new int[5][3],var8=new int[5][3]
My goal was to record them all in order and then read them all in the same order.
For the other posts I saw, to write to internal memory I have to use openFileOutput()
but I did not find any examples that explained how to pass array´s
, arrays bidimensionais
. Can someone tell me a way to solve this?