Skip to content

Commit 4605288

Browse files
authored
Update index.html
1 parent 76e58c8 commit 4605288

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3271,13 +3271,13 @@ <h3 itemprop="name" style="margin:7px">Area of a Circle Segment</h3>
32713271
<br>
32723272
<div style="margin:12px" id="circle-segment_area_calculator">
32733273
<label for="segment-height">Height:</label>
3274-
<input id="segment-height" type="number" step="any">
3274+
<input id="segment-height" type="number" value="1" step="any">
32753275
<br>
32763276
<label for="chord-length">Chord Length:</label>
3277-
<input id="chord-length" type="number" step="any">
3277+
<input id="chord-length" type="number" value="2" step="any">
32783278
<br>
32793279
<label for="parent-radius">Circle Radius:</label>
3280-
<input id="parent-radius" type="number" step="any">
3280+
<input id="parent-radius" type="number" value="1" step="any">
32813281
<script>
32823282
function segmentArea(length, height, angle, radius) {
32833283
return angle * radius ** 2 - (radius - height) * length / 2;

0 commit comments

Comments
 (0)