1470: 蓝桥杯基础练习VIP-时间转换 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int t;//时间:秒 scanf("%d",&t); if(0<=t&&86399>=t) {// in…… 题解列表 2021年03月02日 0 点赞 0 评论 134 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码)简单,水题、、、 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int x; int h,m,s; scanf("%d",&x); h=x/3600; m=(x-h*360…… 题解列表 2019年05月09日 0 点赞 0 评论 348 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换-题解(Java代码) 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class Main { public static void main(String a…… 题解列表 2021年02月15日 0 点赞 0 评论 110 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码) 摘要:解题思路:本题给出一个秒数t3600秒等于1h60秒等于1mint/3600为其能转换的小时,t%3600为其转换成小时后剩余的秒数,再将剩余的秒数转换成分钟: t%3600/60t%3600%60为…… 题解列表 2019年01月08日 0 点赞 0 评论 390 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 摘要:解题思路:注意事项: 考虑进位参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; int h,m,s; …… 题解列表 2022年01月09日 0 点赞 0 评论 253 浏览 评分:0.0
1470: 蓝桥杯基础练习VIP-时间转换 摘要:解题思路:除法注意事项:参考代码:n = int(input())h = n // 3600m = n % 3600 // 60s = n % 3600 % 60print(f"{h}:{m}:{s}…… 题解列表 2024年01月10日 0 点赞 0 评论 63 浏览 评分:0.0
简单易懂!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int t,a[3]={0}; scanf("%d",&t); …… 题解列表 2023年02月19日 0 点赞 0 评论 67 浏览 评分:0.0
琪露诺的编程教室(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring>#include <stdio.h>using namespace std;int main(…… 题解列表 2017年12月26日 0 点赞 0 评论 691 浏览 评分:0.0
时间转换【C++】 摘要:```cpp #include using namespace std; int main(){ int t; cin >> t; int shi = t / 3600; …… 题解列表 2022年04月07日 0 点赞 0 评论 222 浏览 评分:0.0
时间转换 (Java代码) 摘要:解题思路:注意事项:用date类写不行吗?说我是运行错误的。代码仅供参考。参考代码:package s10;import java.text.SimpleDateFormat;import java.…… 题解列表 2017年08月28日 1 点赞 0 评论 726 浏览 评分:0.0