Assume that isIsosceles is a bool variable, and that the variables isoCount, triangleCount, and polygonCount have all been declared and initialized. Write a statement that adds 1 to each of these count variables (isoCount, triangleCount, and polygonCount) if isIsosceles is true.

LANGUAGE: Visual Basic

CHALLENGE:

Assume that isIsosceles is a bool variable, and that the variables isoCount, triangleCount, and polygonCount have all been declared and initialized. Write a statement that adds 1 to each of these count variables (isoCount, triangleCount, and polygonCount) if isIsosceles is true.

SOLUTION:

If isIsosceles = true Then
    isoCount = isoCount + 1
    triangleCount = triangleCount + 1
    polygonCount = polygonCount + 1
End If