diff options
Diffstat (limited to '1427/CH3/EX3.3/3_3.sce')
-rw-r--r-- | 1427/CH3/EX3.3/3_3.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH3/EX3.3/3_3.sce b/1427/CH3/EX3.3/3_3.sce new file mode 100644 index 000000000..6c2ee0d94 --- /dev/null +++ b/1427/CH3/EX3.3/3_3.sce @@ -0,0 +1,8 @@ +//ques-3.3
+//Calculating maximum percentage of Sulphur possible in vulcanized rubber
+clc
+//2 units of isoprene = 2 S atoms
+// 2x68g of isoprene = 2x32g S
+//(68+32)g vulcanized rubber = 32g of S
+m=(32/100)*100;//Maximum percentage of S
+printf("Maximum percentage of sulphur possible in vulcanized rubber is %d.",m);
|