Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4926 | 吴承熹 | 时间换算 | C++ | Wrong Answer | 0 MS | 264 KB | 240 | 2024-10-06 13:22:09 |
#include<iostream> #include<iomanip> using namespace std; int main(){ double a,h,d,w; cin>>a; h=a/60/60; d=a/60/60/24; w=a/60/60/24/7; cout<<fixed<<setprecision(2)<<h<<" "<<d<<" "<<w<<endl; return 0; }
------Input------
963852741
------Answer-----
4.11hour 0.17day 0.02week
------Your output-----
267736.87 11155.70 1593.67