c_code/hello world.cpp

8 lines
129 B
C++

#include<iostream>
using namespace std;
int main() {
cout<<"My name is yizhiyinbao";
cout<<"这是一个测试"<<endl;
return 0;
}