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);