请问,哪错啦!

云之南隅  •  8天前


include

using namespace std; int main() {

int total;
cin>>total;
int h=total/3600;
int m=(total/3600)/60;
int s=total%3600;
cout<<h<<":"<<m<<":"<<s<<endl;
return 0;

}


评论:

请先登录,才能进行评论