想要offer的小学生很强大
想要offer的小学生很强大
全部文章
分类
归档
标签
去牛客网
登录
/
注册
想要offer的小学生很强大的博客
全部文章
(共8篇)
题解 | #数组类的构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: // write your code here...... ...
2024-05-17
1
128
题解 | #长方形的关系#
#include<bits/stdc++.h> using namespace std; class rectangle{ private: int length,width; public: void set(int x,int y){ length=x; wi...
2024-05-17
0
160
题解 | #加号运算符重载#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() ...
2024-05-17
1
142
题解 | #编写函数实现字符串翻转(引用方式)#
#include<bits/stdc++.h> using namespace std; // write your code here...... void f(string &t) { for(int i=0,j=t.size()-1;i<j;i++,j--) ...
2024-05-16
1
137
题解 | #不死神兔问题#
#include <iostream> using namespace std; int getSum(int n); int main() { int n; cin >> n; cout << getSum(n) << ...
2024-05-16
1
142
题解 | #函数实现计算一个数的阶乘#
#include <iostream> using namespace std; long long factorial(int n); int main() { int n; cin >> n; cout << factorial...
2024-05-16
1
134
题解 | #使用字符函数统计字符串中各类型字符的个数#
#include <iostream> #include <string> using namespace std; void strnum(string s,int &a,int &b,int &c,int &d) { for(in...
2024-05-16
1
140
题解 | #比较字符串大小#
#include <iostream> using namespace std; int mystrcmp(const char* src, const char* dst); int main() { char s1[100] = { 0 }; char s2[1...
2024-05-16
1
140