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.
.
.
Click on the title for the solution
.
.
if (isIsosceles==true)
{ isoCount+=1;
triangleCount+=1;
polygonCount+=1;
}
.
Click on the title for the solution
.
.
This is the answer:
:
if (isIsosceles==true)
{ isoCount+=1;
triangleCount+=1;
polygonCount+=1;
}
Comments
Post a Comment