algorithm - What does the notation <> mean ? -
k:=0; b:=1; {b=a^k} while k <> n begin
k:=k+1; b:=b*a; end; couldn't on elsewhere .. hope answered here.
it's first saw in vb.net. means "not equal to".
the other formats might see notation are:
!= /= =/= ^= (although in java bitwise xor operation, in notations ^ denotes not.)
Comments
Post a Comment