c_code/hello world.cpp

7 lines
99 B
C++

#include<iostream>
using namespace std;
int main() {
cout<<"My name is yizhiyinbao";
return 0;
}