blob: e719f451db7571f8e41e5c627ca2204563058cdf (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
// Given that
a = 3.56 // the length of cube edge in angstrom
// Sample Problem 10 on page no. 13.28
printf("\n # PROBLEM 10 # \n")
printf("Standard formula used \n")
printf(" d = a / sqrt(2) \n")
d = a / sqrt(2)
printf("\n Permitive translation vector is %f Angstrom.",d)
|