杨美人


私信TA

用户名:8520

访问量:42776

签 名:

轻易地做到别人无能为力的事情,这就是才能。

等  级
排  名 155
经  验 7206
参赛次数 0
文章发表 69
年  龄 19
在职情况 学生
学  校 太原理工大学
专  业

  自我简介:

#include <stdio.h>
int main()
{
 int t,h,m,s;
 scanf("%d",&t);
 h=t/3600;
 m=(t-h*3600)/60;
 s=t%60;
 printf("%d:%d:%d",h,m,s); 
 return 0;
 }

解题思路:





注意事项:





参考代码:

 

0.0分

0 人评分

  评论区

#include"stdio.h"
int main() 
{
	int t,h,m,s;
	scanf("%d",&t);
	if(t>=0&&t<=86399)
	{
	h=t/3600;
    s=t%3600;
	m=s/60;
    s=s%60;
	}  
	printf("%d:%d:%d\n",h,m,s);
}
2019-01-05 10:52:24
  • «
  • 1
  • »