巧克力冰淇淋蛋糕
巧克力冰淇淋蛋糕
全部文章
分类
归档
标签
去牛客网
登录
/
注册
巧克力冰淇淋蛋糕的博客
全部文章
(共49篇)
题解 | #比较字符串大小#
#include <iostream> using namespace std; int mystrcmp(const char* src, const char* dst); int main() { char s1[100] = { 0 }; char s2[1...
2023-10-07
1
221
题解 | #创建二维动态数组#
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; // write your code here...... int** p = new int...
2023-10-07
1
295
题解 | #创建动态数组#
#include <iostream> using namespace std; int main() { int n; cin >> n; // write your code here...... int* p = new int[n...
2023-10-07
1
274
题解 | #个人所得税计算程序#
#include <algorithm> #include <iomanip> #include <iostream> // write your code here...... #include <scoped_allocator> #include...
2023-10-06
0
277
题解 | #统计字符串中各类型字符的个数#
#include <iostream> #include <cstring> using namespace std; int main() { int letter = 0; int digit = 0; int space = 0; i...
2023-10-06
0
256
题解 | #去除字符串中重复的字符#
#include <iostream> // write your code here...... #include<set> #include <string> using namespace std; int main() { char str[...
2023-10-06
0
277
题解 | #最后k个元素#
#include<bits/stdc++.h> #include <vector> using namespace std; int main() { int n, k; vector<int>a; // write your code h...
2023-10-06
0
251
题解 | #智能排队系统#
#include <iostream> #include <deque> using namespace std; class Guest { public: string name; bool vip; Guest(string name, bo...
2023-10-06
0
264
题解 | #迭代器遍历set#
#include<bits/stdc++.h> using namespace std; int main() { set<int>s; // write your code here...... for (int i = 0; i < 5; i...
2023-10-06
0
206
题解 | #迭代器遍历容器#
#include <iostream> // write your code here...... #include <iterator> #include<vector> using namespace std; int main() { // w...
2023-10-06
0
239
首页
上一页
1
2
3
4
5
下一页
末页