We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11dfba2 commit 910fd1dCopy full SHA for 910fd1d
1 file changed
index.html
@@ -1476,8 +1476,8 @@ <h6 style="font-size:160%;margin:7px">Area of a circle</h6>
1476
1477
// Segment validity check
1478
1479
- if ((length / height) > 18) {
1480
- document.getElementById('segment-area').innerText = 'Out of range';
+ if ((length / height) < 18) {
+ document.getElementById('segment-area').innerText = 'The ratio is out of range';
1481
return;
1482
}
1483
0 commit comments