Commit 8bf91344 authored by 야오지앙's avatar 야오지앙

Upload New File

parent aeef6cc1
#include <iostream>
#include <string>
int main()
{
std::string s0("abcdef");
std::string s1("abc");
std::string s2("def");
std::string s3(s0);
std::string s4("a");
std::string s5("f");
std::cout << "s1: " << s1 << "\ns2: " << s2 << "\ns3: " << s3;
std::cout << "\ns4: " << s4 << "\ns5: " << s5;
return 0;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment