diff options
Diffstat (limited to '1553/CH18/EX18.1/18Ex1.sce')
-rw-r--r-- | 1553/CH18/EX18.1/18Ex1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH18/EX18.1/18Ex1.sce b/1553/CH18/EX18.1/18Ex1.sce new file mode 100644 index 000000000..991aae994 --- /dev/null +++ b/1553/CH18/EX18.1/18Ex1.sce @@ -0,0 +1,9 @@ +//chapter 18 Ex 1
+
+clc;
+clear;
+close;
+s=30*5/18; //converting into m/sec
+d=100;
+t=d/s;
+printf("The required time taken is %d sec",t);
|