入门题,但是要注意看题目 摘要:# 注意审题!注意审题!注意审题! #include int main(){ long long num; //数字过大,用lld scanf("…… 题解列表 2024年11月24日 1 点赞 0 评论 121 浏览 评分:9.9
第一次写题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int h,m,t; t==60*m==3600*h; scanf("%d",&t); h=t/3600; t=t…… 题解列表 2023年10月27日 1 点赞 0 评论 86 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换(简单易懂) 摘要:参考代码: ```c #include int main() { int t,m=0,h=0; scanf("%d",&t); m=t/60; t=t%60; h=m/60…… 题解列表 2023年10月25日 0 点赞 0 评论 82 浏览 评分:0.0
数学计算问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n; int h,m,s; scanf("%d…… 题解列表 2023年10月15日 0 点赞 0 评论 66 浏览 评分:0.0
蓝桥杯基础练习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语言代码) 摘要:解题思路: 1.调用系统函数localtime(),该函数的头文件在<time.h>中,localtime()的返回值是一个结构体sm; …… 题解列表 2023年04月06日 0 点赞 0 评论 87 浏览 评分:9.9
简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int t,a[3]={0}; scanf("%d",&t); …… 题解列表 2023年02月19日 0 点赞 0 评论 67 浏览 评分:0.0
吾乃元始天尊!!1470: 蓝桥杯基础练习VIP-时间转换 摘要:```c #include int main() { int t; scanf("%d",&t); int h,m,s; h=t/3600; …… 题解列表 2022年12月14日 0 点赞 0 评论 106 浏览 评分:0.0
一种超简单的方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h,m,s; int t; scanf("%d",&t); s=t%60; …… 题解列表 2022年11月29日 0 点赞 0 评论 62 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:```c #include void main() { int t,a,b,c; scanf("%d",&t); a = t / 3600; b = (t…… 题解列表 2022年02月10日 0 点赞 0 评论 108 浏览 评分:9.9