当前位置:网站首页>Big Ben (Lua)
Big Ben (Lua)
2022-07-07 19:04:00 【Just be interesting】
subject
There is a claim on weibo “ Big Ben V” The guy who , Bells are rung every day to urge the farmers to take good care of their health and go to bed early . But since Ben doesn't work and rest regularly on his own , So the ringing of the bell is irregular . Generally, the number of striking bells is determined by the striking time , If I happen to knock on the hour , that “ When ” It's going to be equal to that integral ; If it's past the hour , I'm just going to knock on the next one . in addition , Although one day 24 Hours , The clock struck only the second half of the day 1~12 Next . For example, in 23:00 bell , Namely “ Dang dang dang dang dang dang dang dang dang dang dang dang ”, And by the 23:01 It would be “ Dangdang dangdang dangdang dangdang ”. In the middle of the night 00:00 Until noon 12:00 period ( Endpoint time is included ), Stupid clocks don't strike .
Now write a program , Ring Big Ben according to the current time .
Input format :
Enter the first line as follows hh:mm Gives the current time . among hh Is the hour , stay 00 To 23 Between ;mm Is a minute , stay 00 To 59 Between .
Output format :
Ring Big Ben according to the current time , That is, the corresponding number of output in a line Dang. If it's not the bell-ringing period , The output :
Only hh:mm. Too early to Dang.
among hh:mm It's the input time .
sample input 1:
19:05
sample output 1:
DangDangDangDangDangDangDangDang
sample input 2:
07:05
sample output 2:
Only 07:05. Too early to Dang.
Code
local s = io.read()
local h, m = tonumber(s:sub(1, 2)), tonumber(s:sub(4, 5))
local str = ""
if h < 12 or (h == 12 and m == 0) then
str = string.format("Only %02d:%02d. Too early to Dang.", h, m);
else
if m > 0 then
str = string.rep("Dang", h - 11)
else
str = string.rep("Dang", h - 12)
end
end
print(str)
边栏推荐
- [C language] string function
- Cloud security daily 220707: Cisco Expressway series and telepresence video communication server have found remote attack vulnerabilities and need to be upgraded as soon as possible
- Flipping Game(枚举)
- 完整的电商系统
- Scientists have observed for the first time that the "electron vortex" helps to design more efficient electronic products
- 将模型的记忆保存下来!Meta&UC Berkeley提出MeMViT,建模时间支持比现有模型长30倍,计算量仅增加4.5%...
- Nunjuks template engine
- sqlite sql 异常 near “with“: syntax error
- Complete e-commerce system
- Improve application security through nonce field of play integrity API
猜你喜欢
Kirk borne's selection of learning resources this week [click the title to download directly]
App capture of charles+postern
Complete e-commerce system
A hodgepodge of ICER knowledge points (attached with a large number of topics, which are constantly being updated)
行业案例|数字化经营底座助力寿险行业转型
面试唯品会实习测试岗、抖音实习测试岗【真实投稿】
Differences between rip and OSPF and configuration commands
Review of network attack and defense
Interview vipshop internship testing post, Tiktok internship testing post [true submission]
前首富,沉迷种田
随机推荐
99% of people don't know that privatized deployment is also a permanently free instant messaging software!
【Base64笔记】「建议收藏」
Charles+drony的APP抓包
The highest level of anonymity in C language
Learn open62541 -- [67] add custom enum and display name
【塔望方法论】塔望3W消费战略 - U&A研究法
[paper sharing] where's crypto?
Redis的发布与订阅
CVPR 2022 - learning non target knowledge for semantic segmentation of small samples
Sports Federation: resume offline sports events in a safe and orderly manner, and strive to do everything possible for domestic events
二叉树的基本概念和性质
GSAP animation library
微信网页调试8.0.19换掉X5内核,改用xweb,所以x5调试方式已经不能用了,现在有了解决方案
Improve application security through nonce field of play integrity API
体总:安全有序恢复线下体育赛事,力争做到国内赛事应办尽办
How much does it cost to develop a small program mall?
Industry case | digital operation base helps the transformation of life insurance industry
testing and SQA_动态白盒測试[通俗易懂]
伺服力矩控制模式下的力矩目标值(fTorque)计算
Complete e-commerce system