!c語言 c語言將秒數(shù)轉(zhuǎn)換為時間格式(24小時制?
c語言將秒數(shù)轉(zhuǎn)換為時間格式(24小時制?#include<stdio.h>int main(){int t int h,m,s scanf(%d,&t)h=t/3600 m=t/60`s
c語言將秒數(shù)轉(zhuǎn)換為時間格式(24小時制?
#include<stdio.h>int main(){int t int h,m,s scanf(%d,&t)h=t/3600 m=t/60`s=t`printf(“ d: dn”,h,m,s)返回0}