summaryrefslogtreecommitdiff
path: root/2024/CH1/EX1.2/1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2024/CH1/EX1.2/1_2.sce')
-rwxr-xr-x2024/CH1/EX1.2/1_2.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/2024/CH1/EX1.2/1_2.sce b/2024/CH1/EX1.2/1_2.sce
new file mode 100755
index 000000000..b54c9ebed
--- /dev/null
+++ b/2024/CH1/EX1.2/1_2.sce
@@ -0,0 +1,9 @@
+clc
+//Initialization of variables
+z1=1/5280
+z2=1/3600
+v=88 //ft/s
+//calculations
+v2= v*z1/z2
+//results
+printf("velocity in mph = %d mph",v2)