人见人爱A+B (Java代码) 摘要:解题思路:注意事项:满60进1,从秒开始计算。参考代码:import java.util.Scanner;public class AjiaB { public static void main(St…… 题解列表 2018年11月25日 0 点赞 0 评论 530 浏览 评分:0.0
人见人爱A+B (C语言代码)(方法简单易懂) 摘要:思路:将小时和分钟统一换算成秒,再进行加法运算;代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i…… 题解列表 2018年01月05日 0 点赞 0 评论 1046 浏览 评分:0.0
60进制,满60用 / 取整进位,对60取余后即为当前位数 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2024年03月13日 0 点赞 0 评论 143 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; …… 题解列表 2019年01月13日 0 点赞 0 评论 416 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String args[…… 题解列表 2018年04月19日 0 点赞 0 评论 483 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:这题看起来为acm的题,但感觉好像确实没有什么难度,比较适合新手练习。参考代码:#include<stdio.h> int main() { int N,AH,AM,AS,B…… 题解列表 2017年08月01日 4 点赞 0 评论 958 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a,b,c,d…… 题解列表 2022年03月28日 0 点赞 0 评论 170 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:很简单的题目,注意时和分不能超过60,超过就要进位并取模了。注意事项:参考代码:#include <stdio.h> int main() { int n,i; in…… 题解列表 2018年09月08日 0 点赞 0 评论 595 浏览 评分:0.0
1183: 人见人爱A+B(atoi函数的使用) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int T; cin >> T; w…… 题解列表 2024年07月13日 0 点赞 0 评论 72 浏览 评分:0.0
Mark11:类似于k进制转化问题 摘要:#include<stdio.h> int main(){ int n; scanf("%d", &n); for(int i = 0; i < n; i++){ …… 题解列表 2018年10月12日 1 点赞 0 评论 529 浏览 评分:0.0