题解 1183: 人见人爱A+B

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

筛选

人见人爱A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i,h,m,s,a[6];    scanf("%d",&n);    while(n--) ……

人见人爱A+B (Java代码)

摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; ……

人见人爱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……

编写题解 1183: 人见人爱A+B 无

摘要:解题思路:注意事项:参考代码:#include <stdio.h> void add_A_B( long *A, long *B );  int main(){    long    A[3], B[……

其实就是就是简单的加法

摘要:解题思路:先加秒在加分再加时,因为秒满六十就进一位,分满60也进一位,而时则没有限制。注意事项:参考代码:#include<iostream>using namespace std;void test……

人见人爱A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int a, b, c, d, e, f, i, n; scanf("%d", &n); for (i……

人见人爱A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int N,AH,AM,AS,BH,BM,BS;    scanf("%d",&N);    while(……

简单A+B,时间相加,C实现

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d", &n); while (n--)//控制多行输出 { int a[6];……