NEUQ oj-1203人见人爱A+B

来源:互联网 发布:知源中学 编辑:程序博客网 时间:2024/06/08 09:05
#include<cstdio>#include<cstring>//简单模拟 (注意 数据范围为可用32位整数表示,则 int 刚好能够存下int main(){    int n;    scanf("%d",&n);    for(int i=1;    i<=n;   i++){        int ah,am,as,bh,bm,bs;        scanf("%d%d%d%d%d%d",&ah,&am,&as,&bh,&bm,&bs);        int th,tm,ts;        th=ah+bh;        tm=am+bm;        ts=as+bs;        int t;        t=ts/60;        tm=tm+t;        ts=ts%60;        t=tm/60;        th=th+t;        tm=tm%60;        printf("%d %d %d\n",th,tm,ts);    }}
原创粉丝点击