blob: 9aa9a9d0b3fbc0e090312df38dd50cd092dd7d70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Dimensional Analysis
clear;
clc;
printf("\t Example 1.7\n");
L=5.2;//volume in litres
cc=1000*L;//litre to cm^3
mc=cc/10^6;//cm^3 to m^3
printf("\t the volume of blood is : %4.1f *10^-3 m^3\n",mc*10^3);
//End
|