首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
千幂梅
获赞
0
粉丝
0
关注
0
看过 TA
2
IP属地:天津
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑千幂梅吗?
发布(11)
评论
刷题
千幂梅
关注TA,不错过内容更新
关注
2023-03-24 19:56
题解 | #友元类#
#include<bits/stdc++.h> using namespace std; class phone{ // write your code here...... friend class myphone; private: int price; public: phone(int x){ price=x; } }; class myphone{ private: phone a; public: myphone(int x):a(x){ } int getprice(){ return a.price; } }...
0
点赞
评论
收藏
分享
2023-03-24 19:36
题解 | #重载小于号#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() { hours = 0; minutes = 0; } Time(int h, int m) { this->hours = h; this->minutes...
0
点赞
评论
收藏
分享
2023-03-24 19:35
题解 | #重载小于号#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() { hours = 0; minutes = 0; } Time(int h, int m) { this->hours = h; this->minutes...
0
点赞
评论
收藏
分享
2023-03-24 19:23
题解 | #加号运算符重载#
#include <iostream> using namespace std; class Time { public: int hours; // 小时 int minutes; // 分钟 Time() { hours = 0; minutes = 0; } Time(int h, int m) { this->hours = h; this->minutes...
0
点赞
评论
收藏
分享
2023-03-17 19:32
题解 | #数组类的拷贝构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: Array(){ cin>>n; a=new int [n]; for (int i=0;i<n;i++) cin>>a[i]; } Array(const Array &p){ n=p.n; a=new int [n]; for (int i=0;i<n;i++) a[i]=p.a[...
0
点赞
评论
收藏
分享
2023-03-17 19:01
题解 | #浅拷贝和深拷贝#
#include <iostream> #include <cstring> #pragma warning(disable : 4996) using namespace std; class Person { public: char* name; // 姓名 int age; // 年龄 Person(const char* name, int age) { this->name = new char[strlen(name) + 1]; st...
0
点赞
评论
收藏
分享
2023-03-17 18:49
题解 | #数组类的构造函数#
#include<bits/stdc++.h> using namespace std; class Array{ private: int n;//数组大小 int *a;//数组 public: Array() { cin>>n; a=new int[n]; for(int i=0;i<n;i++) cin>>a[i]; } ~Array(){delete []a;} void show(){ for (int i=0;i<n;i++) cout<&l...
0
点赞
评论
收藏
分享
2023-03-10 21:13
题解 | #构造函数#
#include <iostream> #include <string> using namespace std; // Person类 class Person { public: string name; // 姓名 int age; // 年龄 Person(string a,int b):age(b){name=a;} // write your code here...... void showPerson() { cout &...
0
点赞
评论
收藏
分享
2023-03-10 21:07
题解 | #构造函数#
#include <iostream> #include <string> using namespace std; // Person类 class Person { public: string name; // 姓名 int age; // 年龄 Person(string a,int b){name=a;age=b;} // write your code here...... void showPerson() { cout &l...
0
点赞
评论
收藏
分享
2023-03-10 21:00
题解 | #长方形的关系#
#include<iostream> using namespace std; class rectangle { private: int length, width; public: rectangle(int a, int b) { length = a; width = b; } string cancover(rectangle b) { if (length >= b.getlength() && width >= b.getwidth())return "yes"; else return "no"; }; int getwidth(...
0
点赞
评论
收藏
分享
2023-03-10 19:36
题解 | #比较长方形的面积大小#
#include<bits/stdc++.h> using namespace std; class rectangle { private: int length,width; public: rectangle (int l,int h){length=l;width=h;} double area(); }; double rectangle::area(){return length*width;} int main() {int l,h,x,y; cin>>l>>h>>x>>y; rectangle m(l...
0
点赞
评论
收藏
分享
1
关注他的用户也关注了:
牛客网
牛客企业服务