题解 1470: 蓝桥杯基础练习VIP-时间转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯基础练习VIP-时间转换

摘要:解题思路:注意事项:    考虑进位参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; int h,m,s; ……

简单易懂!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){     int t,a[3]={0};     scanf("%d",&t); ……

时间转换【C++】

摘要:```cpp #include using namespace std; int main(){ int t; cin >> t; int shi = t / 3600; ……

时间转换 (Java代码)

摘要:解题思路:注意事项:用date类写不行吗?说我是运行错误的。代码仅供参考。参考代码:package s10;import java.text.SimpleDateFormat;import java.……