summaryrefslogtreecommitdiff
path: root/858/CH2/EX2.13/example_13.sce
blob: 83470bdc83ec2b712dba45d3e4fdb5a072380c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc
clear 
printf("example 2.13 page number 75\n\n")

//to find the boiling point of solution

w_glucose=9    //in gm
w_water=100    //in gm
E=0.52;
m=90/180;    //moles/1000gm water

delta_t=E*m;
boiling_point=100+delta_t;

printf("boiling_point of water = %f degreeC",boiling_point)