首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
18919717626
2025年3月19日 23:09
重载运算符 题解:
P1434
回复 0
|
赞 2
|
浏览 72
#include<iostream> #include<iomanip> #include<cmath> using namespace std; class angle{ public: double x; angle(double agl): x(agl){} doubl...
A1120161820
2020年3月6日 15:19
重载运算符(c++)
P1434
回复 0
|
赞 2
|
浏览 7.8k
#include<iostream> #include<cstdio> #include<cmath> using namespace std; const double PI = 3.1415926535; class angle{ private: int num; public: angle(){} angle(int x):num(x){} void setnum(int x){ num = x; } int getnum(){ return num; } ~angle(){} ...
题目
重载运算符
题解数量
2
发布题解
在线答疑
热门题解
1
重载运算符(c++)
2
重载运算符 题解: