人见人爱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 评论 697 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 无 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void add_A_B( long *A, long *B ); int main(){ long A[3], B[…… 题解列表 2022年05月11日 0 点赞 0 评论 126 浏览 评分: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 评论 405 浏览 评分: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 评论 586 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,h,m,s,a[6]; scanf("%d",&n); while(n--) …… 题解列表 2017年07月31日 0 点赞 0 评论 906 浏览 评分:0.0
。。。。。。。。。。。。。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[100],j,i,h=0,m=0,s=0; scanf("%d",&n); for(i=0;i<…… 题解列表 2021年09月21日 0 点赞 0 评论 102 浏览 评分:0.0
人见人爱A+B(简单易懂) 摘要:解题思路:注意事项:带码的时间复杂度有点长。参考代码:#include<stdio.h>int main(){ int a1,b1,c1; int a2,b2,c2; int a,b,c; i…… 题解列表 2021年12月30日 0 点赞 0 评论 146 浏览 评分:0.0
人见人爱A+B (C语言代码) 摘要:解题思路:很简单的题目,注意时和分不能超过60,超过就要进位并取模了。注意事项:参考代码:#include <stdio.h> int main() { int n,i; in…… 题解列表 2018年09月08日 0 点赞 0 评论 588 浏览 评分:0.0
人见人爱A+B (C语言代码)(方法简单易懂) 摘要:思路:将小时和分钟统一换算成秒,再进行加法运算;代码:#include<stdio.h>#include<string.h>#include<math.h>int main(){ int n,i…… 题解列表 2018年01月05日 0 点赞 0 评论 1038 浏览 评分:0.0
1183题解(c语言代码) 摘要:```c #include int main() { int n; // 记录输入的测试用例数量 int hour_a, hour_b, minute_a, minute_…… 题解列表 2024年09月10日 0 点赞 0 评论 47 浏览 评分:0.0