c++___1入门

include

include"stdio.h"

void trace(const char* s)
{
printf("%s\n",s);
}
class Trace {
public :
void print(const char* s) { printf("%s\n", s); };
};
int main()
{
trace("hi");
Trace t;
t.print("hi2");
//std::cout << "Hello World!\n";
}

posted @ 2021-04-24 19:00  渔_夫  阅读(41)  评论(0编辑  收藏  举报