#include
using namespace std;
void text01(){
cout << "我是一"<< endl;
}
int main(){
void text01();
system("pause");
return 0;
}
#include <iostream>
using namespace std;
void text01(){
cout << "我是一"<< endl;
}
int main(){
text01();
system("pause");
return 0;
}