【p果6手机】#defineP(x)x/x;为什么P(10)和P(4+6)的结果不同?应该怎样运算?_...

发布时间:2021-03-17 10:07:06

#define P(x) x/x; 为什么P(10)和P(4+6)的结果不同?应该怎样运算? 数学

网友回答

【答案】 #define P(x) x/x#define P(10) == 10/10 == 1     #define P(4+6) == 4+6/4+6 == 4+1+6 == 11
以上问题属网友观点,不代表本站立场,仅供参考!