70,021
社区成员




// f.cpp
#include <iostream>
using namespace std;
void f()
{
cout<<"called."<<endl;
}
//#include "f.cpp"
#include <iostream>
#include "f.cpp"
using namespace std;
int main()
{
f();
system("pause");
return 0;
}