Robert Holder
ScreenHunter_47 Aug. 21 09.54
github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...
// copyright (c) 2011 Robert Holder, Janice Dugger.
// See HELP.html included in this distribution.
#include
void IfThen2::runExercise()
{
int x=0, y=0;
int horizontalstep=50, verticalstep=50;
Color color = DARKCYAN;
for ( x = 0; x < 400; x += horizontalstep )
{
for (y = 0; y < 400; y += verticalstep )
{
fwcRectangle(x, y, 48, 48, color, 1, true);
}
if ( color == DARKCYAN ) color = DARKBLUE; // = is pronounced GETS, == is pronounced EQUALS :-)
else color = DARKCYAN;
}
}
ScreenHunter_47 Aug. 21 09.54
github.com/FeetWetCoding/FeetWetCoding/blob/master/exerci...
// copyright (c) 2011 Robert Holder, Janice Dugger.
// See HELP.html included in this distribution.
#include
void IfThen2::runExercise()
{
int x=0, y=0;
int horizontalstep=50, verticalstep=50;
Color color = DARKCYAN;
for ( x = 0; x < 400; x += horizontalstep )
{
for (y = 0; y < 400; y += verticalstep )
{
fwcRectangle(x, y, 48, 48, color, 1, true);
}
if ( color == DARKCYAN ) color = DARKBLUE; // = is pronounced GETS, == is pronounced EQUALS :-)
else color = DARKCYAN;
}
}