Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
1657 张曦元 时分秒转换 C++ Accepted 100 0 MS 252 KB 191 2019-10-17 20:33:21

Tests(2/2):


#include<iostream> int main(){ int a,b,c,d; scanf("%d",&a); b=a/3600; a=a%3600; c=a/60; a=a%60; d=a; printf("%d:%d:%d",b,c,d); return 0; }


Judgement Protocol: