大笨钟

这个太简单了,没有题解。

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int hh,mm;
    int time;
    scanf("%d:%d",&hh,&mm);
    time=hh*100+mm;
    if (time>=0&&time<=1200) {
        printf("Only %02d:%02d.  Too early to Dang.",hh,mm);
    }
    else {
        int res=hh-12;
        if (mm!=0) {
            res++;
        }
        for (int i=0;i<res;i++){
            printf("Dang");
        }
    }
    putchar('\n');
    return 0;
}

posted @ 2020-02-18 09:48  xyee  阅读(129)  评论(0编辑  收藏  举报