我会有一百个offer
我会有一百个offer
全部文章
分类
归档
标签
去牛客网
登录
/
注册
我会有一百个offer的博客
全部文章
(共11篇)
题解 | #十进制整数转十六进制字符串#
#include <iostream> #include <string> using namespace std; string toHexString(int n); int main() { int n; cin >> n; ...
2023-03-05
0
257
题解 | #实现简单计算器功能#
#include <iostream> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); // write your code he...
2023-03-04
0
353
题解 | #个人所得税计算程序#
#include <iomanip> #include <iostream> #include<algorithm> // write your code here...... #include<vector> using namespace std;...
2023-03-04
1
385
题解 | #迭代器遍历容器#
#include <iostream> // write your code here...... #include <vector> using namespace std; int main() { // write your code here...... ...
2023-03-04
0
272
题解 | #不死神兔问题#
#include <iostream> using namespace std; int getSum(int n); static int sum=0; int main() { int n; cin >> n; cout << ...
2023-03-03
0
328
题解 | #查找#
#include<bits/stdc++.h> using namespace std; int main(){ set<int>s; //write your code here...... int n,m,temp=0; cin>>n>>m...
2023-03-03
0
386
题解 | #迭代器遍历set#
#include<bits/stdc++.h> using namespace std; int main(){ set<int>s; // write your code here...... set<int>::iterator it; int num...
2023-03-02
0
332
题解 | #构建长方体类#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: rectangle(int x,int y){ length=x; w...
2023-03-02
0
279
题解 | #重载小于号#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() ...
2023-03-02
0
280
题解 | #数组类的拷贝构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: Array(){ cin>>n; a=new...
2023-03-02
0
222
首页
上一页
1
2
下一页
末页