# include <stdio.h>
/*
2022年4月13日17:17:20
+= *= /= %=
先计算运算符右边的
*/
int main() {
int a = 2;
int b = 3;
b *= a + 5; //先是 2+5 再 乘以 3 等于21
printf("%d", b);
return 0;
}
/*
在dev中运行的结果为
21
--------------------------------
Process exited after 0.01038 seconds with return value 0
请按任意键继续. . .
先计算运算符右边的
由此
*/