栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

OJ 2215 Problem B: 时间之差

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

OJ 2215 Problem B: 时间之差

Description

定义一个类Time,包含小时、分钟、秒三个属性。定义其构造函数Time(int, int, int)分别初始化其小时、分钟、秒。重载减法运算符,用于求两个时间之间相差的秒数(非负整数)。

Input

输入有2行。每行表示1个时间,包括小时、分钟、秒三个值。输入都是合法的24小时制的时间。

Output

见样例。

Sample Input

12 10 10

10 20 20

Sample Output

Deference is 6590 seconds.

HINT

Append Code
int main()
{
    int a, b, c;
    cin>>a>>b>>c;
    Time t1(a, b, c);
    cin>>a>>b>>c;
    Time t2(a, b, c);
    cout<<"Deference is "<<(t2 - t1)<<" seconds."< 
Accepted Code 
#include 

using namespace std;
class Time
{
private:
    int h,m,s;
public:
    Time(int H, int M, int S) : h(H), m(M), s(S) {}
    friend int  operator-(Time &t1,Time &t2)
    {
        int t=(t1.h*3600 + t1.m*60 + t1.s-t2.h*3600 - t2.m*60 - t2.s);
        if(t<0)
          return -t;
        else return t;
    }

};
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/605254.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号