Compare commits

..

2 Commits

Author SHA1 Message Date
111dee6c4c Merge pull request '1' (#7) from dev_jiaolong into main
Reviewed-on: #7
2026-02-25 12:29:01 +08:00
c69029e578 1 2026-02-25 12:28:26 +08:00

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;
}