diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /608/CH1/EX1.03 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '608/CH1/EX1.03')
-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 |