diff options
Diffstat (limited to '3648/CH5/EX5.3/Ex5_3.sce')
-rw-r--r-- | 3648/CH5/EX5.3/Ex5_3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3648/CH5/EX5.3/Ex5_3.sce b/3648/CH5/EX5.3/Ex5_3.sce new file mode 100644 index 000000000..48eb4d380 --- /dev/null +++ b/3648/CH5/EX5.3/Ex5_3.sce @@ -0,0 +1,8 @@ +//Example 5_3
+clc();
+clear;
+//To find the work done by the pulling force
+F=20 //units in Newtons
+d=5 //units in meters
+W=F*d //units in joules
+printf("Work done is W=%d Joules",W)
|