蓝桥杯基础练习VIP-时间转换-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t,h,m,s; scanf("%d",&t); h=t/3600; m=(t-3600*h)/60; …… 题解列表 2021年02月03日 0 点赞 0 评论 166 浏览 评分:0.0
C++代码简便 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main() { int H = 0, M = 0, S = 0; int t; c…… 题解列表 2022年03月26日 0 点赞 0 评论 72 浏览 评分:0.0
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
小南解题--时间转换--92ms 摘要:b=int(input())a=bs=f=m=0s=a//3600f=(a-s*3600)//60m=a-s*3600-f*60print('%d:%d:%d'%(s,f,m))…… 题解列表 2022年08月28日 0 点赞 0 评论 195 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int t,a,b,c; scanf("%d",&t); c=t%60; b=t/60…… 题解列表 2018年08月09日 0 点赞 0 评论 497 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main{ /* * 给定一个以秒为单位的时间t,要求用 “< H> :< M> :< S> …… 题解列表 2017年12月19日 0 点赞 0 评论 692 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (C++代码) 摘要:解题思路: 简单的转换嘛,用一下结构体。参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(…… 题解列表 2019年04月05日 0 点赞 0 评论 377 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String arg…… 题解列表 2018年04月14日 2 点赞 0 评论 643 浏览 评分:0.0
蓝桥杯基础练习VIP-时间转换 摘要:解题思路:不就是练一下“/”和“%”嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int t;int main(){ scan…… 题解列表 2022年05月11日 0 点赞 0 评论 134 浏览 评分: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