diff options
Diffstat (limited to '1553/CH17/EX17.10/17Ex10.sce')
-rw-r--r-- | 1553/CH17/EX17.10/17Ex10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1553/CH17/EX17.10/17Ex10.sce b/1553/CH17/EX17.10/17Ex10.sce new file mode 100644 index 000000000..39cc78e5b --- /dev/null +++ b/1553/CH17/EX17.10/17Ex10.sce @@ -0,0 +1,13 @@ +//chapter 17 Ex 10
+
+clc;
+clear;
+close;
+s1=65; s2=35;
+d=390;
+t=(390+s2)/(s1+s2);
+t_hr=round(t);
+t_min=(modulo(t,t_hr))*60;
+t1=10;
+t2_hr=t1+t_hr;
+printf("They meet at %d:%d hour",t2_hr,t_min);
|