summaryrefslogtreecommitdiff
path: root/1553/CH1/EX1.22/1Ex22.sce
blob: 55e6b731a56ad427ba6fd8aab0fb8cebade9082b (plain)
1
2
3
4
5
6
7
8
9
//chapter 1 Ex 22
clc;
clear;
close;
//let value to be found is x
numerator=658^3-328^3;
denominator=658^2+658*328+328^2;
x=(numerator/denominator);
mprintf("x=%.0f",x);