summaryrefslogtreecommitdiff
path: root/1427/CH3/EX3.3/3_3.sce
blob: 6c2ee0d948ce4f50ca6d0b1d55d1f0fa224a25e3 (plain)
1
2
3
4
5
6
7
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);