当前位置:网站首页>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)
边栏推荐
猜你喜欢
Cadre de validation des données Apache bval réutilisé
99% of people don't know that privatized deployment is also a permanently free instant messaging software!
RISCV64
Comparison and selection of kubernetes Devops CD Tools
App capture of charles+postern
【Unity Shader】插入Pass实现模型遮挡X光透视效果
Five network IO models
Kirk Borne的本周学习资源精选【点击标题直接下载】
如何选择合适的自动化测试工具?
Basic operation of chain binary tree (implemented in C language)
随机推荐
Hutool - lightweight DB operation solution
Realize payment function in applet
2022-07-04 matlab reads video frames and saves them
Calculation of torque target value (ftorque) in servo torque control mode
Usage of PHP interview questions foreach ($arr as $value) and foreach ($arr as $value)
How to implement safety practice in software development stage
3.关于cookie
[paper sharing] where's crypto?
微信网页调试8.0.19换掉X5内核,改用xweb,所以x5调试方式已经不能用了,现在有了解决方案
A few simple steps to teach you how to see the K-line diagram
如何给“不卖笔”的晨光估值?
SD_ DATA_ SEND_ SHIFT_ REGISTER
Simple configuration of single arm routing and layer 3 switching
行业案例|数字化经营底座助力寿险行业转型
Review of network attack and defense
Industry case | digital operation base helps the transformation of life insurance industry
The live broadcast reservation channel is open! Unlock the secret of fast launching of audio and video applications
Learn open62541 -- [67] add custom enum and display name
2022年推荐免费在线接收短信平台(国内、国外)
能同时做三个分割任务的模型,性能和效率优于MaskFormer!Meta&UIUC提出通用分割模型,性能优于任务特定模型!开源!...