1 2 3 4 5 6 7 8
//chapter 4 Ex 30 clc; clear; close; a=343; b=113; value=(a*a*a-b*b*b)/(a*a+a*b+b*b); mprintf("The value is %d",value);