blob: 1993dcbe9ecea31fd718133c12c0f759f8024b06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 9 Ex 2
clc;
clear;
close;
//(i)
x1=(0.00032)^(3/5);
//(ii)
x2=((256)^(0.16))*((16)^(0.18));
mprintf("The value of expression 1 and expression 2 are %.3f and %d",x1,x2);
|