Method pointer while loop
in
Programming Questions
•
1 month ago
I've been trying to figure out how to do a second line from the bottom left to the top right
in this code that intersects the one in my while loop.
int i = 0;
while (i < 1000){
i = i+1;
if (i < width){
if (i < height){
point (i,i);
}
}
}
1