diff options
Diffstat (limited to '1529/CH1/EX1.3/1_03.sce')
-rwxr-xr-x | 1529/CH1/EX1.3/1_03.sce | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/1529/CH1/EX1.3/1_03.sce b/1529/CH1/EX1.3/1_03.sce new file mode 100755 index 000000000..33b68a5d4 --- /dev/null +++ b/1529/CH1/EX1.3/1_03.sce @@ -0,0 +1,7 @@ +//Chapter 1, Problem 3
+clc;
+M=0.2; //mass in Kg
+g=9.81 // acceleration due to gravity
+F=M*g; //calculating the force
+//Force acting downwards = weight
+printf("Force acting downwards = %f N",F);
|