解题思路:
注意事项:
参考代码:
import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(); for(int i=0;i<n;i++){ int a=sc.nextInt();int b=sc.nextInt();int c=sc.nextInt(); int d=sc.nextInt();int e=sc.nextInt();int f=sc.nextInt(); int A=a+d; int B=b+e; int C=c+f; B=B+C/60; C=C%60; A=A+B/60; B=B%60; System.out.println(A+" "+B+" "+C); } } }
0.0分
0 人评分
C语言训练-阿姆斯特朗数 (C语言代码)浏览:897 |
母牛的故事 (C语言代码)浏览:479 |
数组输出 (C语言代码)错误???浏览:602 |
兰顿蚂蚁 (C++代码)浏览:1160 |
【蟠桃记】 (C语言代码)浏览:698 |
剪刀石头布 (C语言代码)浏览:802 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:822 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:561 |
矩形面积交 (C++代码)浏览:1204 |
矩阵的对角线之和 (C语言代码)浏览:1401 |