aloha to all who help,
import java.util.*;
public class PicturesNext
{
public static void main (String[] args)
{
for (int x = 0; x<=10; x++)
{
System.out.println("X"+ "\n");
}
}
}
goal is to get X to print first line followed by XX on 2nd, XXX on 3rd and so on until 10.....not sure where to go next.....please help!

