Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
k:=0; b:=1; {b=a^k}
while k <> n do begin
k:=k+1; b:=b*a; end;
在其他地方无法获得帮助..希望在这里得到答案。
这是我在VB.net中第一次看到的东西。它的意思是“不等于”。
您可能会看到此表示法的其他格式如下:
!= /= =/= ^= (although in Java this is a bitwise XOR operation, in some notations ^ denotes not.)
而 k “小于或大于,因此不等于” n