You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SQA-Homework/JackyMa/FuncUsedCheck/test.cpp

22 lines
204 B

#include "head.h"
int foo(int x){
return 2*x;
}
int foo1(int x){
return x;
}
int foo2(int x){
return x*x;
}
int main(){
test();
//int x = foo(1);
int y = foo1(1);
int z = foo2(1);
return 0;
}