summaryrefslogtreecommitdiff
path: root/3665/CH2/EX2.6
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH2/EX2.6')
-rw-r--r--3665/CH2/EX2.6/Ex2_6.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3665/CH2/EX2.6/Ex2_6.sce b/3665/CH2/EX2.6/Ex2_6.sce
new file mode 100644
index 000000000..fb23b75dc
--- /dev/null
+++ b/3665/CH2/EX2.6/Ex2_6.sce
@@ -0,0 +1,19 @@
+clc//
+//
+//
+
+//Variable declaration
+a=1;
+b=1/2;
+c=3;
+
+//Calculation
+A=1/a;
+B=1/b;
+C=1/c;
+h=A*c;
+k=B*c;
+l=C*c; //miller indices of plane
+
+//Result
+printf("\n miller indices of plane is ( %0.3f %0.3f %0.3f)",h,k,l)