碰到個C語言優先順序問題題目:請問X的值是多少? #include <stdio.h> int main() { int x=6; x+=x-=x*x; printf("%d\n", x); }. 答案是"-60" ,請問為什麼是-60?
確定! 回上一頁