不明白,谁知道
#include <stdio.h>
int main()
{
int a = 3;
int b = 4;
int z =a+b%(a+b)/a+a*b-b;
printf("z=%d\n", z);
return 0;
}