blob: 89d68940f9d6a7c374e537ca2ebb65892dcca6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter 3 Ex 10
clc;
clear;
close;
//let value to be found is x, y and z
x=0.63/9;
y=.0204/17;
z=3.1603/13;
mprintf("(i)x=%.2f",x);
mprintf("\n(ii)y=%.4f",y);
mprintf("\n(iii)z=%.4f",z);
|