summaryrefslogtreecommitdiff
path: root/3769/CH10/EX10.24/Ex10_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH10/EX10.24/Ex10_24.sce')
-rw-r--r--3769/CH10/EX10.24/Ex10_24.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3769/CH10/EX10.24/Ex10_24.sce b/3769/CH10/EX10.24/Ex10_24.sce
new file mode 100644
index 000000000..bfedc791f
--- /dev/null
+++ b/3769/CH10/EX10.24/Ex10_24.sce
@@ -0,0 +1,12 @@
+clear
+//Given
+a=45 //Degree
+b=60 //Degree
+
+//Calculation
+//
+A=tan(a*3.14/180.0)/(cos(b*3.14/180.0))
+a=atan(A)*180/3.14
+
+//Result
+printf("\n Apparant dip is %0.1f Degree",a)