test(test): add expected-output checks for cases

This commit is contained in:
Lane0218
2026-03-12 10:48:06 +08:00
parent d0a4c7d6d2
commit 69a6951f84
25 changed files with 551 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
//test the priority of add and mul
int main(){
int a, b, c, d;
a = 10;
b = 4;
c = 2;
d = 2;
return (c + a) * (b - d);
}