运算符的优先级 #include<stdio.h> #include<stdlib.h> main(){ int a = 20; int b = 10; int c = 15; int d = 5; int e; e = (a+b)*c/d; printf("(a+b)*c/d的值是%d\n",e); e=a+(b*c)/d; printf("a+(b*c)/d的值是%d\n",e); system("pause"); }