diff --git a/字符串拼接.cpp b/字符串拼接.cpp new file mode 100644 index 0000000..c351580 --- /dev/null +++ b/字符串拼接.cpp @@ -0,0 +1,15 @@ +// +// Created by viole on 2026/2/24. +// +#include "iostream" +using namespace std; +int main() { + string a = "1"; + string b = "12"; + string c = "13"; + string d = "14"; + int e = 12; + cout << a+b<