blob: e52450dfb1c04ea295e01fdbf0398fe1538e55e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
c=3*10**10 //Speed of Light in Vacuum
mu=1.44 //Refractive Index
//Calculations
u=c*10**-10/mu
//Result
printf("\n The Velocity in the liquid is %0.2f *10**10 m/s",u)
|