blob: d47c323e83f775b41fcdc0d199f6ab9b2ac17020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
W=(3.14/3) //Angular frequency in radian
//Calculations
t=((3.14)/(3*W))
//Result
printf("\n The time taken to move from one end of its path to 0.025m from mean position is %i sec",t)
|