summaryrefslogtreecommitdiff
path: root/884/CH3/EX3.3/Example3_3.sce
blob: de64f35d9173c1f87c26708cb61a1512581f1c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Computation of mass from moles

clear;
clc;

printf("\t Example 3.3\n");

moles=0.356;//moles of Zn

mass=moles*65.39;//mass of Zn, g, 1 mole=65.39 g

printf("\t the mass of Zn is : %4.1f g\n",mass);


//End