diff options
Diffstat (limited to '608/CH1/EX1.03/1_03.sce')
-rwxr-xr-x | 608/CH1/EX1.03/1_03.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/608/CH1/EX1.03/1_03.sce b/608/CH1/EX1.03/1_03.sce new file mode 100755 index 000000000..6d5aa090a --- /dev/null +++ b/608/CH1/EX1.03/1_03.sce @@ -0,0 +1,11 @@ +//Problem 1.03: Find the force acting vertically downwards on a mass of 200 g attached to a wire.
+
+//initializing the variables:
+M = 0.2; // in Kg
+g = 9.81; // in m/s2
+
+//calculation:
+F = M*g
+
+printf("\n\nResult\n\n")
+printf("\nForce: %.3f Newton(N)\n",F)
\ No newline at end of file |