From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1301/CH2/EX2.18/ex2_18.sce | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 1301/CH2/EX2.18/ex2_18.sce (limited to '1301/CH2/EX2.18') diff --git a/1301/CH2/EX2.18/ex2_18.sce b/1301/CH2/EX2.18/ex2_18.sce new file mode 100755 index 000000000..a32f495a7 --- /dev/null +++ b/1301/CH2/EX2.18/ex2_18.sce @@ -0,0 +1,8 @@ +clc; +v0=20; //velocity in ft/sec +g=32; //gravitational constant in ft/sec +t=2; //time in sec +v=v0+(g*t); //kinematical equation +disp(v,"Velocity in ft/sec = "); //displaying result +s=(v0*t)+(1/2)*g*t*t; //kinematical equation +disp(s,"Distance in ft = "); //displaying result \ No newline at end of file -- cgit