当前位置: 首页 > news >正文

C++练习3

 

 练习

终端上输出 3.14 要求实现 myDouble的 operator+ operator- operator*

(不考虑进位)

class myOut

{

没有私有成员 只有公开函数

}

myOut out;

out << 1 终端输出1

out << 3.14 终端输出3.14

out << "hello" 终端输出hello

out << endl 终端输出换行符

不允许使用 cout 去做,用printf 去做

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <unistd.h>
#include <sstream>
#include <vector>
#include <memory>

using namespace std;

class myDouble{
    private:
        int a;
        int b;

    public:
        myDouble(int a=0,int b=0):a(a),b(b){}
        void show(){
            cout << a << "." << abs(b) << endl;
        }
        myDouble operator+(const myDouble& r){
            myDouble res;
            res.a = this->a + r.a;
            res.b = this->b + r.b;
            return res;
        }
        myDouble  operator-(const myDouble& r){
            myDouble res;
            res.a = this->a - r.a;
            res.b = this->b - r.b;
            return res;
        }
    myDouble  operator*(const myDouble& r){
            myDouble res;
            res.a = this->a * r.a;
            res.b = this->b * r.b;
            return res;
        }
};
class myOut {
    public:
        // 处理整数
        myOut& operator<<(int value) {
            printf("%d", value);
            return *this;
        }

        // 处理浮点数(自动调整格式)
        myOut& operator<<(double value) {
            printf("%g", value);
            return *this;
        }

        // 处理字符串
        myOut& operator<<(const char* str) {
            printf("%s", str);
            return *this;
        }

        // 处理endl(函数指针)
        myOut& operator<<(myOut& (*manip)(myOut&)) {
            return manip(*this);
        }
};

// 实现全局的endl函数
myOut& endl(myOut& out) {
    printf("\n");
    return out;
}
int main(int argc,const char** argv){
    myDouble x(3,14);
    myDouble y(2,4);
    myDouble temp = x + y;
    temp.show();
    temp = x - y;
    temp.show();
    temp = x * y;
    temp.show();
    myOut out;
    out << 1;
    out << 3.14;    // 输出: 3.14
    out << "hello"; // 输出: hello
    out << endl;    // 输出换行

    // 链式调用
    out << 1 << 3.1415926 << " world" << endl; // 输出: 13.1416 world

}

 

刷题


http://www.mrgr.cn/news/96721.html

相关文章:

  • ZGC 参数优化与 GC 触发机制解析分享
  • cpu下安装MinerU进行数据清洗
  • Linux centos 7 常用服务器搭建
  • 解决 CMS Old GC 频繁触发线上问题技术方案
  • Spring Boot向Vue发送消息通过WebSocket实现通信
  • 初学STM32系统时钟设置
  • 【SpringBoot + MyBatis + MySQL + Thymeleaf 的使用】
  • Linux基础入门指南:用户管理、基本指令(一)
  • QT 非空指针 软件奔溃
  • RAG优化:python从零实现Proposition Chunking[命题分块]让 RAG不再“断章取义”,从此“言之有物”!
  • SpringIoC和DI
  • Sink Token
  • Day3 蓝桥杯省赛冲刺精炼刷题 —— 排序算法与贪心思维
  • Redis 6.2.6 生产环境单机配置详解redis.conf
  • 深入解析拓扑排序:算法与实现细节
  • 【LeetCode 热题100】347:前 K 个高频元素(详细解析)(Go语言版)
  • nodejs:midi-writer-js 将基金净值数据转换为 midi 文件
  • 如何本地部署RWKV-Runner尝鲜CPU版
  • 动态规划入门:从记忆化搜索到递推
  • TypeError: __init__() got an unexpected keyword argument ‘device_type‘