please include a copy code thanks 21 Pick a number Write a p
please include a copy code thanks
 Solution
X = [\'multiply number n with\' ,num2str(a)];
disp(X)
fr = n * a;
Y =[\'Add\' ,num2str(b) ,\'to the result\']
disp(Y)
fs = fr +b;
Z=[\'multiply the result by\', num2str(c) ]
disp(Z)
fq = fs *c
A=[\'Add\' , num2str(d), \'to the result\' ]
disp(A)
ft = fq + d
V= [\'multiply the result by\' , numstr2(e) ]
disp(V)
fu = ft * e
g = fu / e;
j = g - d;
y = j / c;
pre = y-b;
final = pre - a;
M = [\'The number you thought was\' , final ]
endl;

