diff options
Diffstat (limited to '1553/CH17/EX17.11/17Ex11.sce')
-rw-r--r-- | 1553/CH17/EX17.11/17Ex11.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH17/EX17.11/17Ex11.sce b/1553/CH17/EX17.11/17Ex11.sce new file mode 100644 index 000000000..fa2fa73d7 --- /dev/null +++ b/1553/CH17/EX17.11/17Ex11.sce @@ -0,0 +1,9 @@ +//chapter 17 Ex 11
+
+clc;
+clear;
+close;
+us=90;t1=6;t2=4;
+t=t1+t2;
+s_goods=us*t2/t;
+printf("The speed of goods train is %d km/hr",s_goods);
|