我是靠谱客的博主 真实电源,最近开发中收集的这篇文章主要介绍C++课后作业 20. 运算符重载课堂练习:分钟秒钟的时间相减,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

    • 前引
    • 原题题目
    • 代码实现
    • 提交结果


前引


感觉有点像
C++智商训练营了


原题题目


在这里插入图片描述


代码实现


#include <iostream>
using namespace std;
#define N 100

class CTime {
 public:
  CTime() : minutes_(0), seconds_(0) {}
  CTime(const int& minutes__, const int& seconds__)
      : minutes_(minutes__), seconds_(seconds__) {}

  void input() {
    cin >> minutes_ >> seconds_;
  }

  int totalseconds() const {
    return minutes_ * 60 + seconds_;
  }

  CTime operator-(const CTime& other) {
    CTime tmp(*this);
    int seconds = totalseconds();
    int other_totalseconds = other.totalseconds();

    int totalseconds = seconds - other_totalseconds;
    int new_minutes = totalseconds / 60;
    int new_seconds = totalseconds % 60;

    return CTime(new_minutes, new_seconds);
  }

  friend ostream& operator<< (ostream& os, const CTime& time);

  bool beZero() const {
    return minutes_ == 0 && seconds_ == 0;
  }

 public:
  int minutes_;
  int seconds_;
};

ostream& operator<< (ostream& os, const CTime& time) {
  return os << time.totalseconds() << endl;
}

int main() {
  CTime time[N];
  int count = -1;
  do
  {
    count++;
    time[2 * count].input();
    time[2 * count + 1].input();
  } while (!(time[2 * count].beZero() && time[2 * count + 1].beZero()));

  for (int i = 0; i < count; ++i) {
    cout << time[2 * i + 1] - time[2 * i] << endl;
  }
  return 0;
}

提交结果


在这里插入图片描述

最后

以上就是真实电源为你收集整理的C++课后作业 20. 运算符重载课堂练习:分钟秒钟的时间相减的全部内容,希望文章能够帮你解决C++课后作业 20. 运算符重载课堂练习:分钟秒钟的时间相减所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部