diff options
Diffstat (limited to '1427/CH3/EX3.5')
-rw-r--r-- | 1427/CH3/EX3.5/3_5.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH3/EX3.5/3_5.sce b/1427/CH3/EX3.5/3_5.sce new file mode 100644 index 000000000..91ba3b32c --- /dev/null +++ b/1427/CH3/EX3.5/3_5.sce @@ -0,0 +1,8 @@ +//ques-3.5
+//Calculating weight of HCHO required
+clc
+m=100;//weight of novolac given (in g)
+//2 molecules of novolac = 1 molecule of HCHO
+//2x96g of novolac = 30g of HCHO
+w=(30*m)/(2*96);//weight of HCHO
+printf("Weight of HCHO required for %dg of novolac is %.3fg.",m,w);
|