Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
假如我设一个名为时间的变量,初始值为0,通过其他条件增加,我想取得此变量所有7的倍数作为条件,有什么方法,求教
@药丸 系统组件条件-比较两值-第一个输入框填你这个变量名%7,第二个输入框填0,中间的比较符填等于,也就是 时间%7 等于 0时,%号是求余运算,会获得无法被整除的余数部分,所以时间变量%7就是获得该变量除以7后无法被整除的余数部分,结合等于0来看就是当时间变量除以7的余数为0时,也就是你要的时间变量的值为7的整数倍时,因为余数为0说明能被7整除。