1 条题解
-
1陈烨鑫 (chenyexin) LV 10 @ 2023-6-8 17:36:14
#include<iostream> using namespace std; int main(){ int a,h,m,s;h=m=s=0; cin>>a; h=a/3600;a=a%3600; m=a/60;a=a%60;s=a; cout<<h<<":"<<m<<":"<<s; }
- 1
信息
- ID
- 1130
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 9
- 标签
- 递交数
- 9
- 已通过
- 8
- 上传者