qfedu-cpp-level/day5/d3/main.cpp

12 lines
154 B
C++
Raw Permalink Normal View History

2023-08-14 17:20:39 +08:00
#include "mystring.h"
#include <iostream>
using namespace std;
int main()
{
MyString s1("disen");
cout << s1 + ",lucy" << endl;
return 0;
}