Commit a8118638 authored by 야오지앙's avatar 야오지앙

Upload New File

parent 8bf91344
#include <iostream>
#include <string>
int main()
{
std::string str1, str2, str3, str4, str5, str6;
str1 = "I have ";
str2 = "an apple";
str3 = str1 + str2;
str4 = "i have";
str5 = " an apple";
str6 = str4 + str5;
std::cout << str3 << '\n';
std::cout << str6 << '\n';
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