You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
288 B

#include<iostream>
using namespace std;
//显示?号的解决办法
//https://blog.csdn.net/honest_boy/article/details/85934199
int main()
{
cout << "8000秒=";
cout << 8000 / 3600 << "小时";
cout << (8000 % 3600) / 60 << "分钟";
cout << 8000 % 3600 % 60 << "" << endl;
return 0;
}