blob: b7615947cce2fca6e099a0130417158c541058f1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 10_2
clc();
clear;
//To find the mass of copper atom
maa=63.5 //Units in Kgs
n=6.022*10^26 //Units in number of atoms
Mass=maa/n //units in Kg/atom
printf("The Mass per atom is=")
disp(Mass)
printf("Kg/Atom")
|