牛客458666302号
牛客458666302号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客458666302号的博客
全部文章
(共27篇)
题解 | #十进制整数转十六进制字符串#
#include <cctype> #include <ios> #include <iostream> #include <sstream> #include <string> #include <algorithm> usi...
2023-09-16
0
261
题解 | #实现简单计算器功能#
#include <iostream> #include <sstream> #include <algorithm> using namespace std; int main() { char str[100] = { 0 }; cin.g...
2023-09-16
0
385
题解 | #个人所得税计算程序#
#include <iomanip> #include <ios> #include <iostream> // write your code here...... #include <vector> #include <algorithm&g...
2023-09-16
0
382
题解 | #找到数组里的第k大数(C++)#
#include<bits/stdc++.h> #include <functional> using namespace std; int main(){ int n,k; vector<int>a; // write your code here.......
2023-09-16
0
352
题解 | #使用算法#
#include <functional> #include <iostream> #include <vector> // write your code here...... #include <algorithm> using namespac...
2023-09-16
0
267
题解 | #判断元素是否出现#
#include<bits/stdc++.h> using namespace std; int main(){ //write your code here...... int n, m; cin >> n >> m; map<int, int&...
2023-09-16
0
293
题解 | #查找#
#include<bits/stdc++.h> using namespace std; int main(){ set<int>s; //write your code here...... int n, m; cin >> n >> m; ...
2023-09-16
0
263
题解 | #统计字符串中各字母字符对应的个数#
#include <iostream> // write your code here...... #include <map> using namespace std; int main() { char str[100] = { 0 }; cin.g...
2023-09-16
1
406
题解 | #去除字符串中重复的字符#
#include <iostream> // write your code here...... #include <set> using namespace std; int main() { char str[100] = { 0 }; cin.g...
2023-09-16
1
321
题解 | #智能排队系统#
#include <iostream> #include <deque> using namespace std; class Guest { public: string name; bool vip; Guest(string name, bo...
2023-09-16
0
332
首页
上一页
1
2
3
下一页
末页