blob: 3da6be6b674882b00d01df2247b2102f6587c1ef (
plain)
1
2
3
4
5
6
7
8
9
|
clc,clear
//Example 4.3
//To determine length of the intercepted arc
r=2 //radius of circle
theta=1.2 //central angle in radian
s=r*theta //length of arc
printf('Length of arc intercepted = %.1f cm',s)
|