blob: f060c5dc0f7fdc3dbaec903157b7dfb0f23293c3 (
plain)
1
2
3
4
5
6
7
8
9
|
//ques-22.3
//Determining coordination number of Cs and Br
clc
Rc=169;//radii of Cs+ (in pm)
Ra=195;//radii of Br- (in pm)
x=Rc/Ra;
//As x>0.732
c=8;//coordination number
printf("The coordination number of Cs and Br both is %d.",c);
|