A Selection Example
int max(int x, int y)
{
int maximum;
if (x < y)
{
maximum = y;
}
else
{
maximum = x;
}
return maximum;
}
Previous slide
Next slide
Back to first slide
View graphic version