Run ID:5871

提交时间:2024-12-20 19:05:17

#include <bits/stdc++.h> using namespace std; int main() { int m; double s,t,z; cin>>m; s=m/3600; t=m/86400; z=m/604800; cout<<s<<"hour"<<endl; cout<<t<<"day"<<endl; cout<<z<<"week"<<endl; return 0; }