[lab2]checkopint with "while, continue, break" not implemented

This commit is contained in:
ladev789
2025-03-31 20:46:04 +08:00
parent dfa396b06f
commit 9d619b11d7
4 changed files with 8 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
//test file for backend lab
int main() {
int a;
int a = 1;
const int b = 2;
int c;

View File

@@ -7,7 +7,7 @@ int mul(int x, int y) {
int main(){
int a, b;
a = 10;
b = 0;
b = 3;
a = mul(a, b);
return a + b;
}