求实习的马里奥很想去夏威夷
求实习的马里奥很想去夏威夷
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求实习的马里奥很想去夏威夷的博客
全部文章
(共8篇)
题解 | #个人所得税计算程序#
#include <iomanip> #include <iostream> // write your code here...... #include <vector> #include <algorithm> using namespace st...
2023-10-28
1
270
题解 | #去除字符串中重复的字符#
#include <iostream> // write your code here...... #include <set> using namespace std; int main() { string str; getline(cin,str);...
2023-10-27
0
148
题解 | #找到数组里的第k大数(C++)#
#include<bits/stdc++.h> using namespace std; bool mycomp(int i,int j){ return (i < j); } int main(){ int n,k; vector<int>a; // wri...
2023-10-26
0
177
题解 | #查找#pair对的使用
#include<bits/stdc++.h> #include<iterator> using namespace std; int main(){ set<int>s; vector<int> a; //write your code her...
2023-10-26
0
180
题解 | #浅拷贝和深拷贝#
#include <iostream> #include <cstring> #pragma warning(disable : 4996) using namespace std; class Person { private: char* na...
2023-08-10
0
292
题解 | #比较字符串大小#
#include <iostream> #include <cstring> using namespace std; int mystrcmp(const char* src, const char* dst); int main() { char s1[10...
2023-08-09
0
269
题解 | #判断一个数是不是质数#
#include <cmath> #include <iostream> using namespace std; int main() { // write your code here...... long long n; bool isPri...
2023-08-07
0
216
题解 | #实现四舍五入#
#include <iostream> using namespace std; int main() { float a, b; while (cin >> a >> b) { // 注意 while 处理多个 case cou...
2023-08-06
0
192