blob: 9ce333975b1880964914da8c7f89b5f8fd1f8b27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialisation of variables
n= 1/1000
T= 60 //degrees
T1= 100 //degrees
//CALCULATIONS
r= T-n*T^2
r1= T1-n*T1^2
tl= r*100/r1
//RESULTS
printf (' liquid temperature= % 1f C',tl)
|