for(int i=0;i< no_of_hosts;i++)
for(int j=0;j < count;j++)
write(Double.toString(table1[i][j]));
table1 has double values, and write() is printing every value as new line (in a file). Now I like print like this:
1 34 44
2 45 95
3 90 12
considering no_of_hosts = 3 and count = 2. Any idea?