blob: 62f310eeba0cb6b5f2e618e38573a0b2a9f1bce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
clear;
clc;
// Stoichiometry
// Chapter 2
// Basic Chemical Calculations
// Example 2.10
// Page 22
printf("Example 2.10, Page 22 \n \n");
// solution
// NaOH
Impurity = 60 // [ppm] SiO2
m = (60/1000000)*100
printf("Mass percent of SiO2 is "+string(m)+".")
|