+=,-=,=,/=,%=
    e.g. a+=5; : a=a+5;
    a
    =y+2; : a=a*(y+2);

    ? : 型
    e.g. max=(x>y)?x:y :
    if(x>y)
    max=x;
    else
    max=y;