1 #7

Merged
violeteverisland merged 1 commits from dev_jiaolong into main 2026-02-25 12:29:01 +08:00
Showing only changes of commit c69029e578 - Show all commits

15
字符串拼接.cpp Normal file
View File

@@ -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<<c+d<<a+to_string(e)<< endl;
bool b1 = true;
return 0;
}