blob: 7140bf83829a8516ad157f993d84bef69d631d59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Ex4_9
clc;
// Given:
E=2.5; // in MeV
// Solution:
// 1 Mev/atom=96.32GJ/mole
E1=E*96.32// GJ/mole
E2=0.1*E1;// for 0.1 mole
printf("The energy that would be released for 0.1 mole of Co will be = %f GJ",E2)
|