blob: a8b4c7f964420cd1c2c0838c02a6a2c24a65d64d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 1
//Example 1.17
//Page 40
clear;
clc;
TF=22.4;
V=412;
//Finding the value of temperature
printf("The value of temperature is equal to %.6f degree celcius \n",V/TF);
printf("Our result can be significant to 3 places = %.1f degree celcius",V/TF);
|