blob: 8ec0b99f90858de8b893af7cb15917ff18f79c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc//
//
//
//Variable declaration
r=1; //assume
//Calculation
a=4/sqrt(3);
R=(a-(2*r))/2; //radius of interstitial sphere(r)
//Result
printf("\n radius of interstitial sphere is %0.3f r",R)
|