1 Star 1 Fork 1

无线电/3_c++练习

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
1_string_拼接格式化.cpp 213 Bytes
Copy Edit Raw Blame History
无线电 authored 2024-03-12 16:38 +08:00 . 整理readme
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string a ="hello";
string b ="world";
string c = a+" "+b;
cout << a << b <<endl;
cout << c <<endl;
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zero2200/3_cpp-practice.git
git@gitee.com:zero2200/3_cpp-practice.git
zero2200
3_cpp-practice
3_c++练习
master

Search