Have Teresa explain this code to you
for (int i=0; i< 22; i++)
{
println(i);
}
Write a program that draws 7 vertical stripes of points using nested for loops hint:
for (int x=?; x< ?; x+= ?)
{
for (int y = ?; y<?; y+=?)
{
point(x,y);
}
}
Now make 14 vertical stripes
Now make 3 vertical stripes and 18 horizontal stripes