Hi I'm just new at programming java. So I was just stuck in this example code:
for(int i=0; i < something.length; i++){
System.out.print(i + " ,");
}
So, basically it will print like this for example 0,1,2,3,.But as you can see there is an extra comma after the number. Is there a way to code this? thanks in advance.