python 复数求和解法 摘要:n=int(input())lis=[]for i in range(n): a,b=map(int,input().split()) lis.append((a,b))A=0B=0for…… 题解列表 2023年03月03日 0 点赞 0 评论 124 浏览 评分:0.0
算法提高VIP-复数求和 摘要:解题思路:分析题目要求:输入几行,将输入的数字存入一个列表中,方便下面的使用for循环把列表中的数字相加,最后格式化输出。注意事项:要会用循环参考代码:n=int(input())l=[]while …… 题解列表 2023年05月11日 0 点赞 0 评论 133 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:#include<stdio.h> #include<stdlib.h> typedef struct elemtype { int a; int b; struct elem…… 题解列表 2023年06月08日 0 点赞 0 评论 97 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct num { int f; int v; struct num* next;}n;str…… 题解列表 2023年10月13日 0 点赞 0 评论 117 浏览 评分:0.0
C语言解题,带注释,体现模块化思想 摘要: #include #include typedef struct _node { int value_real; int value_i…… 题解列表 2025年01月20日 0 点赞 0 评论 104 浏览 评分:0.0
链表实现复数求和(作代码记录用) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct…… 题解列表 2025年02月07日 0 点赞 0 评论 133 浏览 评分:0.0
复数求和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n,a[100][2],b=0,c=0; scanf("%d",&n); for(int…… 题解列表 2017年10月22日 0 点赞 0 评论 1243 浏览 评分:2.0
蓝桥杯算法提高VIP-复数求和-题解(Java代码) 摘要: Scanner scanner=new Scanner(System.in); int n=scanner.nextInt(); int[][] sz=new int[n][2]; …… 题解列表 2019年12月20日 0 点赞 0 评论 521 浏览 评分:2.0
(超短代码,你值得拥有) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; int m; int num1=0,num2=0; scanf("%d",&m); while…… 题解列表 2019年04月02日 0 点赞 0 评论 732 浏览 评分:3.0
蓝桥杯算法提高VIP-复数求和-满分题解!! 摘要: #include int main() { int n; scanf("%d",&n); int i,j,k,A=0,B=0,a,b; …… 题解列表 2019年12月05日 0 点赞 0 评论 950 浏览 评分:5.3