设int a;short b;char c;,则表达式b+a*c的类型是()
int
short
char
double
故表达式b+a*c中a*c是int型,b是short型,则表达式b+a*c的类型是int。