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 --- 884/CH1/EX1.2/Example1_2.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 884/CH1/EX1.2/Example1_2.sce (limited to '884/CH1/EX1.2/Example1_2.sce') diff --git a/884/CH1/EX1.2/Example1_2.sce b/884/CH1/EX1.2/Example1_2.sce new file mode 100755 index 000000000..060fcf889 --- /dev/null +++ b/884/CH1/EX1.2/Example1_2.sce @@ -0,0 +1,16 @@ +// Computation of mass from density and volume + +clear; +clc; + +printf("\t Example 1.2\n"); + +d=13.6;//density of mercury, g/ml +v=5.50;// volume of mercury, ml + +m=d*v;//mass of mercury, g + +printf("\t the mass of mercury is : %4.1f g\n",m); + + +//End -- cgit