0
how to output an array without brackets and commas?I try with "replace", but its work only with brackets.
I search answer in Google, and find method replace, but he work only with one : brackets or commas, not together. https://code.sololearn.com/c4crudAd7exR/?ref=app
3 Respostas
+ 3
Do this outside the for loop.
Also remove the last if statement.
for(String n:arr)
System.out.print(n+" ");
0
Task:
Take a phrase and replace any instances of an integer from 0-10 and replace it with the English word that corresponds to that integer
0
Thanks)