[lab2]修复了标签冗余错误,以及一些其他bug
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
//test add
|
||||
|
||||
|
||||
int main(){
|
||||
int main(int e){
|
||||
int a, b;
|
||||
float d;
|
||||
float c;
|
||||
a = 10;
|
||||
b = 2;
|
||||
int c = a;
|
||||
d = 1.1 ;
|
||||
return a + b + c;
|
||||
a = 11;
|
||||
c = 1.3 ;
|
||||
return a+b;
|
||||
}
|
||||
|
||||
int add(int a, int b){
|
||||
return a+b;
|
||||
}
|
||||
Reference in New Issue
Block a user