数学运算符
+-*/%
赋值运算符
= += -= *= /= %=
+= : a+=b 等价于 a=a+b
比较运算符
> >= < <= == !=
逻辑运算符(逻辑运算符都是服务于bool运算的)
&& I I !
! : 取反,例如下
bool isDead = false;
print(!true);
print (!false);
&& 逻辑与
l l 逻辑或
! 取反
例如:
int player1hp = 80;
int player2hp = 90;
if( player1hp<=0 && player2hp<=0)
{ print("GameOver");}