summaryrefslogtreecommitdiff
path: root/1553/CH18/EX18.9/18Ex9.sce
blob: ad01ff8a849b8a5cd4e729a45d002f1632d5a54e (plain)
1
2
3
4
5
6
7
8
9
10
11
//chapter 18 Ex 9

clc;
clear;
close;
sTrain=54; tTrainP=20; tTrainM=12; sMan=6;
sRelative=(sTrain-sMan)*5/18;   //Difference since opposite in direction
lTrain=sRelative*tTrainM;
lTotal=tTrainP*sTrain*5/18;
lPlatform=lTotal-lTrain;
printf("The length of train is %d m and length of platform is %d m",lTrain,lPlatform);