Answer:
563.55
Step-by-step explanation:
85/100*663=563.55
Answer:
the missing angle is 130
Step-by-step explanation:
180-50=130
Answer:
picture po mero po ba kayong pic nyan
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.