PDA

View Full Version : operators and operands


fmh002
03-17-2004, 07:22 AM
hello

according to my lecturer there are 9 distinct operators and 6 distinct operands in the following pseudo code:

max:=A[i]; i=2;
while i <= 10 do
begin
if A[i] > max then max:=A[i];
i:=i+1
end


could someone please tell me how he got those numbers (6 and 9) ?

thank you in advance.

fmh002