diff options
Diffstat (limited to '1427/CH2/EX2.8')
-rw-r--r-- | 1427/CH2/EX2.8/2_8.sce | 8 |
1 files changed, 8 insertions, 0 deletions
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);
|