C语言两行搞定。(我就是来逗b的,啊哈哈嗝) 摘要:#include<stdio.h>int main(){int x;scanf("%d", &x);int h = 0, m = 0, s = 0;h = x / 60 / 60 % 60;m = x…… 题解列表 2021年04月09日 0 点赞 0 评论 256 浏览 评分:9.9
时间转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int h,m,t; scanf("%d",&t); h=t/3600; t%=3600; …… 题解列表 2017年10月22日 0 点赞 0 评论 787 浏览 评分:9.9
1470: 蓝桥杯基础练习VIP-时间转换 摘要:```c #include void main() { int t,a,b,c; scanf("%d",&t); a = t / 3600; b = (t…… 题解列表 2022年02月10日 0 点赞 0 评论 109 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换C语言题解 摘要:很好理解,就不介绍了 ```c #include int main(void) { int h=0,m=0,s=0,in_s; scanf("%d",&in_s); …… 题解列表 2023年09月06日 0 点赞 0 评论 82 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(C语言代码) 摘要:解题思路:仅记录自己的题解注意事项:仅记录自己的题解参考代码:#include<stdio.h>int main(){ int t,h,m,s; scanf("%d",&t); h=…… 题解列表 2021年01月14日 0 点赞 0 评论 343 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(C语言代码) 摘要: public static void f1() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(…… 题解列表 2020年07月29日 0 点赞 0 评论 225 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(C语言代码)满分代码!! 摘要: #include int main() { long long int t; scanf("%lld",&t); int h=0,m=…… 题解列表 2019年12月04日 0 点赞 0 评论 665 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解-一步解题(C语言代码) 摘要:解题思路: 1.调用系统函数localtime(),该函数的头文件在<time.h>中,localtime()的返回值是一个结构体sm; …… 题解列表 2023年04月06日 0 点赞 0 评论 87 浏览 评分:9.9
入门题,但是要注意看题目 摘要:# 注意审题!注意审题!注意审题! #include int main(){ long long num; //数字过大,用lld scanf("…… 题解列表 2024年11月24日 1 点赞 0 评论 121 浏览 评分:9.9
蓝桥杯时间转换-题解(C语言代码) 摘要: #include int main() { int t,H,M,S; scanf_s("%d", &t); if (0…… 题解列表 2020年02月02日 0 点赞 0 评论 514 浏览 评分:9.9