竞赛
考级
#include <iostream> using namespace std; int main( ){ int a,h,m,s; cin>>a; h=a/3600; m=(a-h3600)/60; s=(a-h3600)%60; printf("%02d:%02d:%02d",h,m,s); }
龙🐉
七(6)朱瀚辰
#include<iostream> using namespace std; int main(){ int t,h,m,s; cin>>t; h=t/3600; m=(t-h*3600)/60; s=t%60; printf("%02d:%02d:%02d",h,m,s); return 0; }
徐晨轩
一只雪梨
迟绾画星
WA君
c++真好玩
skirmish
夕阳的刻痕_王煜宸·皮皮虾
熙熙熙熙
提交答案之后,这里将显示提交结果~