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

2 years ago
#include<iostream>
using namespace std;
//<2F><>ʾ<EFBFBD><CABE><EFBFBD>ŵĽ<C5B5><C4BD><EFBFBD><EFBFBD>
//https://blog.csdn.net/honest_boy/article/details/85934199
int main()
{
cout << "8000<EFBFBD><EFBFBD>=";
cout << 8000 / 3600 << "Сʱ";
cout << (8000 % 3600) / 60 << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>";
cout << 8000 % 3600 % 60 << "<EFBFBD><EFBFBD>" << endl;
return 0;
}