-->
当前位置:首页 > 题库

PROGRAMMING:Priority and combination

Luz5年前 (2021-05-10)题库442
```
Please execute the code and think about priorities and combinations.
#include
int main(){
int a,b,c;
a=100; b=20; c=3;
printf("a+b*c=%d\n",a+b*c);
printf("a+b-c=%d\n",a+b-c);
return 0;
}
```
###Input example:
```in
```
###Output example:
```out
a+b*c=160
a+b-c=117
```







answer:If there is no answer, please comment