From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1427/CH2/EX2.8/2_8.sce | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 1427/CH2/EX2.8/2_8.sce (limited to '1427/CH2/EX2.8/2_8.sce') diff --git a/1427/CH2/EX2.8/2_8.sce b/1427/CH2/EX2.8/2_8.sce new file mode 100644 index 000000000..67edfacb0 --- /dev/null +++ b/1427/CH2/EX2.8/2_8.sce @@ -0,0 +1,8 @@ +//ques-2.8 +//Calculating percentage of Sulphur in coal sample +clc +M=32;//Molar mass of Sulphur (in g) +W=0.5;//Weight of coal sample (in g) +w=0.05;//Weight of precipitate formed (in g) +p=(w*M*100)/(233*W);//Percentage of Sulphur +printf("The percentage of Sulphur in coal sample is %.4f.\n",p); -- cgit