天气欲爆
天气欲爆
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
天气欲爆的博客
全部文章
(共3篇)
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> #include using namespace std; // write your code here...... string Swap(string &s) { string s1; int i; int j=0; for(...
C++
2022-02-27
0
377
题解 | #结构体简单使用#
#include #include using namespace std; struct student { // write your code here...... string name; int age; double height; }; int main() { // write ...
C++
2022-02-22
0
352
题解 | #字符串拼接#
#include #include using namespace std; int main() { string s1, s2; getline(cin, s1); getline(cin, s2); // write your code here...... s1=s1+s2; cout...
C++
2022-02-22
2
491