W7 U 2 WWW UW 22 T W The above sequence of instructions wi
W:=7 U:= 2 W:=(W*(W + U-W) + 2)-2 T:= W The above sequence of instructions will store in T
Solution
% code in the matlab
w=7;
u=2;
w=(w*(w+u/w)+2)/2;
t=w
%the output for the program is shown below for the above fallowing equations
output:
% the t value after the execution is shown below
t = 26.500
