人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int time[1000]; int i,j,n,k,x; int sum[1000]; …… 题解列表 2017年12月09日 0 点赞 0 评论 1289 浏览 评分:0.0
人见人爱A+B (C语言代码)(方法简单易懂) 摘要:思路:将小时和分钟统一换算成秒,再进行加法运算;代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i…… 题解列表 2018年01月05日 0 点赞 0 评论 1808 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,N; int h,m,s; int a[6]; while(scanf("%d",&N)!=…… 题解列表 2018年02月26日 0 点赞 0 评论 1613 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:运用时间60进制的特点,满60进1;参考代码:#include<stdio.h>int main(void){ int i,n,a,b,c,d,e,f; scanf("%d",&n); fo…… 题解列表 2018年02月27日 0 点赞 0 评论 991 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路: import java.util.Scanner; public class C1183 { public static void main(String[] args) { …… 题解列表 2018年03月23日 2 点赞 0 评论 1781 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:就简单的把对应小时,分钟,秒分别相加;如果分钟和秒大于60的话,就像高位进;注意事项:再分别相加时,应先加秒,然后分钟,最后小时;(因为可能存在本来高位不足进位,但从低位进位一个后就满足了)…… 题解列表 2018年04月09日 1 点赞 0 评论 1230 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:注意事项:参考代码:public class 人见人爱A加B_未解决 { public static void main(String[] args) { // TODO Au…… 题解列表 2018年05月15日 0 点赞 0 评论 1640 浏览 评分:0.0
人见人爱A+B (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String args[…… 题解列表 2018年04月19日 0 点赞 0 评论 1246 浏览 评分:0.0
这条题目比较简单,没什么难的 摘要:解题思路:取模就行了注意事项:参考代码:#include<stdio.h>int fun(int *a ,int *b){ int i,hour=0,min=0,sec=0,temp1,temp…… 题解列表 2018年10月09日 0 点赞 0 评论 1339 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int a, b, c, d, e, f, i, n; scanf("%d", &n); for (i…… 题解列表 2017年12月01日 0 点赞 0 评论 1737 浏览 评分:2.0