blob: 8cfdfdff6bd3b56b03852814cb088204fea1658b (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//Initialization of variables
x1=0.0200
Kx=812
//calculations
disp("Neglecting 2x in comparision with x1,")
x=x1/Kx
//results
printf("Moles of Iodine present = %.2e mole",x)
|