I have a simple but hard problem and wanted to get your help on this. This is the code:
int i = 0;
while (i < 100) {
i++;
System.out.print(i);
}
This is the real issue that I'm having, how do I control the println to display how many numbers per line that I want so I don't just see 100
numbers in a row straight?
Btw please if at all possible, don't give me the answer but help me to answer it myself instead.