怕黑的牛油为你答疑解惑
怕黑的牛油为你答疑解惑
全部文章
分类
归档
标签
去牛客网
登录
/
注册
怕黑的牛油为你答疑解惑的博客
TA的专栏
168篇文章
1人订阅
语法篇:C++入门
0篇文章
0人学习
Python:python入门
0篇文章
0人学习
Python:数据分析
16篇文章
839人学习
语法篇:基础语法
143篇文章
0人学习
题解 | #[NOIP2015]金币#
题解 | #判断是否为回文字符串#
笔试 面试 经验贴
8篇文章
3348人学习
算法篇:面试笔刷TOP101
1篇文章
0人学习
题解 | #二分查找-I#
全部文章
(共404篇)
题解 | #数组类的拷贝构造函数#
#include<bits/stdc++.h> using namespace std; class Array { private: int n;//数组大小 int* a;//数组 public: Array() { cin >&...
2023-10-23
0
246
题解 | #浅拷贝和深拷贝#
#include <iostream> #include <cstring> #pragma warning(disable : 4996) using namespace std; class Person { public: char* name; // ...
2023-10-23
0
205
题解 | #数组类的构造函数#
#include<bits/stdc++.h> using namespace std; class Array { private: int n;//数组大小 int* a;//数组 public: // write your code here.......
2023-10-23
0
186
题解 | #构造函数#
#include <iostream> #include <string> using namespace std; // Person类 class Person { public: string name; // 姓名 int age; ...
2023-10-23
0
205
题解 | #点和圆的关系#
#include <iostream> #include <cmath> using namespace std; // 点类 class Pointer { private: int x; // x 坐标 int y; // y 坐标 pu...
2023-10-23
0
242
题解 | #长方形的关系#
#include<bits/stdc++.h> #include <string> using namespace std; class rectangle { private: int length, width; public: void set(...
2023-10-23
0
273
题解 | #长方形的关系#
#include<bits/stdc++.h> #include <string> using namespace std; class rectangle { private: int length, width; public: void set(...
2023-10-23
0
259
题解 | #利用指针遍历数组#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int* ptr = arr; int len = sizeof(arr) / sizeof(int); ...
2023-10-22
0
183
题解 | #利用指针遍历数组#
#include <iostream> using namespace std; int main() { int arr[6] = { 0 }; int* ptr = arr; int len = sizeof(arr) / sizeof(int); ...
2023-10-22
0
235
题解 | #结构体简单使用#
#include <iostream> #include <string> using namespace std; struct student { // write your code here...... string name; int ag...
2023-10-22
0
227
首页
上一页
32
33
34
35
36
37
38
39
40
41
下一页
末页