求解
#include <iostream> #include <vector> #include <algorithm> using namespace std; #define f(x) (x * x) int main() { int i1, i2; i1 = f(8) / f(4); i2 = f(4 + 4) / f(2 + 2); printf("%d,%d", i1, i2); system("pause"); return 0; } 输出是多少? 为啥编译出来是4,3 ,不是4,4 呢?