blob: 7dcf87d6edb05fb702b585ba8b96027559753de2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//chapter 18 Ex 6
clc;
clear;
close;
l1=137; l2=163; s1=42; s2=48;
sRelative=(s1+s2)*5/18; //Addition of speeds since in opposite direction
tPass=(l1+l2)/sRelative;
printf("The time taken by trians to pass each other is %d sec",tPass);
|