使用C语言输出时间
使用C语言简单的输入输出时间
操作方法
- 01
定义x s t d int x,s,t,d
- 02
获取键盘中输入的字符,二进制输入到x scanf("%d",&x);
- 03
时间算法 s=x%60;t=(x/60)%60;d=(x/60)/60;
- 04
输出时间 printf("%d时%d分%d秒",d,t,s);
- 05
完整代码#include <stdio.h>main(){ int x,s,t,d; scanf("%d",&x); s=x%60; t=(x/60)%60; d=(x/60)/60; printf("%d时%d分%d秒",d,t,s);}
赞 (0)