Hzu挑战自我


私信TA

用户名:gxhzxyjsj

访问量:98842

签 名:

2024终究会过去,期待2025!

等  级
排  名 8
经  验 27874
参赛次数 67
文章发表 157
年  龄 0
在职情况 教师
学  校 贺州学院
专  业 软件工程

  自我简介:

弱鸡一个,继续努力!

解题思路:简单的水题。知道时分秒的计算即可。

注意事项:

参考代码:

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



 

0.0分

2 人评分

  评论区

我想请问,为什么这道题暴力破解解不出来
2020-03-23 20:48:03
  • «
  • 1
  • »