💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
# Advanced Operators Some advanced operators can be used, such as: - **Modulus (division remainder)**: `x = y % 2` - **Increment**: Given a = 5 - `c = a++`, Results: c = 5 and a = 6 - `c = ++a`, Results: c = 6 and a = 6 - **Decrement**: Given a = 5 - `c = a--`, Results: c = 5 and a = 4 - `c = --a`, Results: c = 4 and a = 4 Exercise Define a variable `c` as the modulus of the decremented value of `x` by 3. ~~~ var x = 10; var c = ~~~