题解 | #牛牛的时钟#

牛牛的时钟

https://www.nowcoder.com/practice/36fd5f6b6236452f99f0ea59cd3447e0

#include <stdio.h>
struct Time{
    int h;
    int m;
    int s;
};
int main() {
    int n=0;
    scanf("%d",&n);
    int arr[10];
    for(int i=0;i<n;i++)
        scanf("%d",&arr[i]);
    struct Time time[10]={0};
    for(int i=0;i<n;i++)
    {
        if(i>0)
        {
            time[i].h=time[i-1].h;
            time[i].m=time[i-1].m;
            time[i].s=time[i-1].s;
        }
        time[i].s+=arr[i];
        if(time[i].s>=60)
        {
            time[i].m+=time[i].s/60;
            time[i].s=time[i].s%60;
        }
        if(time[i].m>=60)
            {
                time[i].h+=time[i].m/60;
                time[i].m=time[i].m%60; 
            }
        printf("%d %d %d\n",time[i].h,time[i].m,time[i].s);
    }
    return 0;
}

全部评论

相关推荐

去B座二楼砸水泥地:不过也可以理解,这种应该没参加过秋招
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务