blob: aea9e36a7b385aa8b402e404ab9fb321ad35eb2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter 3 Ex 11
clc;
clear;
close;
//let value to be found is x, y and z
x=35/0.07;
y=2.5/.0005;
z=136.09/43.9;
mprintf("(i)x=%.0f",x);
mprintf("\n(ii)y=%.0f",y);
mprintf("\n(iii)z=%.1f",z);
|