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

Popular posts from this blog

matlab - Deleting rows with specific rules -

jquery - How would i go about shortening this code? And to cancel the previous click on click of new section? -