L1-018 大笨钟(C++版)

L1-018 大笨钟(C++版)

题目要求

微博上有个自称“大笨钟V”的家伙,每天敲钟催促码农们爱惜身体早点睡觉。不过由于笨钟自己作息也不是很规律,所以敲钟并不定时。一般敲钟的点数是根据敲钟时间而定的,如果正好在某个整点敲,那么“当”数就等于那个整点数;如果过了整点,就敲下一个整点数。另外,虽然一天有24小时,钟却是只在后半天敲1~12下。例如在23:00敲钟,就是“当当当当当当当当当当当”,而到了23:01就会是“当当当当当当当当当当当当”。在午夜00:00到中午12:00期间(端点时间包括在内),笨钟是不敲的。

下面就请你写个程序,根据当前时间替大笨钟敲钟。


输入格式

输入第一行按照hh:mm的格式给出当前时间。其中hh是小时,在00到23之间;mm是分钟,在00到59之间

1905
07:05

输出格式

DangDangDangDangDangDangDangDang
Only 07:05.  Too early to Dang.

代码如下(示例):

#include<stdio.h>
#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
    
    
    int h,m,k;
    scanf("%2d:%2d",&h,&m);
    k=h-12;
    if(k>0)
    {
    
    
        if(m==0)
        {
    
    
            for(int i=0;i<k;i++)
            cout<<"duang";
        }
        else
        {
    
    
            for(int i=0;i<=k;i++)
            cout<<"duang";
        }
    }
    else
    {
    
    
        cout<<"Only "<<setw(2);
        cout.fill('0');
        cout<<h<<":"<<setw(2)<<m
        cout<<".  Too early to Dang.";
    }

}

猜你喜欢

转载自blog.csdn.net/qq_53293179/article/details/115272731