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.
 
 
 
 
 
 

21 lines
211 B

#include <iostream>
using namespace std;
int a();
int main(){
cout << a() << endl;
string a="xsaxa";//使用过后再重新定义也是可行的
cout << a << endl;
return 0;
}
int a(){
return 2;
}