From e7270b2dada003574cd352657efe418caf4c90e4 Mon Sep 17 00:00:00 2001 From: violeteverisland Date: Wed, 25 Feb 2026 12:28:26 +0800 Subject: [PATCH] 1 --- 字符串拼接.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 字符串拼接.cpp 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<