CompilerSysY/testcases/functional_test/18_cal_prio.sy
2023-05-08 21:15:52 +08:00

12 lines
111 B
Plaintext

int a;
int b;
int c;
int main(){
a = getint();
b = getint();
c = getint();
int d;
d = a+b*c;
return d;
}