编写一个程序,要求用户输入24小时制的时间,然后显示12小时制的格式。下面是运行程序时的一个例子,其中下划线部分是用户输入的内容:Enter a 24-hour time:____Equivalent 12-hour time: 9:21 PM注意:编程时不要把12:00显示成0:00提示:接收用户输入的时间,可以用语句scanf (“%d:%d”, &hour, &minute);
举一反三
- 中国大学MOOC: 如果在北京时间18点20分运行以下代码,程序的输出是______。Sub Procedure( ) If Hour(Time( )) >= 8 And Hour(Time( )) <12 Then Debug.Print 上午好! ElseIf Hour(Time( )) >= 12 And Hour(Time( )) <18 Then Debug.Print 下午好! Else Debug.Print 欢迎下次光临! End IfEnd Sub
- 如果在北京时间7点50分运行以下代码,程序的输出是Sub Procedure( ) If Hour(Time( )) >= 8 And Hour(Time( )) [ 12 Then Debug.Print "上午好!" ElseIf Hour(Time( )) ]= 12 And Hour(Time( )) < 18 Then Debug.Print "下午好!" Else Debug.Print "欢迎下次光临!" End IfEnd Sub A: 欢迎下次光临! B: 上午好! C: 下午好! D: 无输出
- 如果在北京时间18点20分运行以下代码,程序的输出是Sub Procedure( ) If Hour(Time( )) >= 8 And Hour(Time( )) [12 Then Debug.Print "上午好!" ElseIf Hour(Time( )) ]= 12 And Hour(Time( )) <18 Then Debug.Print "下午好!" Else Debug.Print "欢迎下次光临!" End IfEnd Sub A: 欢迎下次光临! B: 上午好! C: 下午好! D: 无输出
- 江苏省企业峰谷分时电价的具体时段为() A: 谷时:0:00~8:00 B: 峰时:8:00~12:0017:00~21:00 C: 谷时:0:00~9:00 D: 平时:12:00~17:0021:00~24:00
- 以下是时钟模拟显示程序,按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。#includetypedefstructclock{inthour;intminute;intsecond;}CLOCK;/*函数功能:时、分、秒时间的更新*/voidUpdate(________){staticlongm=1;t->hour=m/3600;t->minute=__________________;t->second=___________;m++;if(t->hour==24)m=1;}/*函数功能:时、分、秒时间的显示*/voidDisplay(CLOCK