到这里写不来了
#include <stdio.h>int main(){ int x = 5; int y = 8; int z = x*8/(y+2); printf("z=%d\n", z); return 0; }
这样是z=5*8/(8+2)
也就是z=40/10
所以z=4