blob: 4bea548b01835315ab7128e441fc21740efeee6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Calculate the Bond order of Nitric Oxide takes part in smog formation
//Example 15.2
clc;
clear;
MO=6; //Number of electron in bonding molecular orbital
AMO=1; //Number of electron in antibonding molecular orbital
BO=1/2*(MO-AMO); //Bond order of Nitric Oxide
printf("Bond order of Nitric Oxide = %.1f ",BO);
|