// Scilab Code Ex1.1 Page-13 (2006) clc; clear; r = 1.278e-010; // Atomic radius of fcc structure, m a = 4*r/sqrt(2); // Lattice parameter of fcc strucure, m V = a^3; // Volume of fcc unit cell, metre, cube printf("\nThe lattice parameter of fcc strucure = %4.2e m", a); printf("\nThe volume of fcc unit cell = %5.2e metre, cube", V); // Result // The lattice parameter of fcc strucure = 3.61e-010 m // The volume of fcc unit cell = 4.72e-029 metre cube