蓝桥杯算法提高VIP-复数求和-题解(C++代码) 摘要:```cpp #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include …… 题解列表 2020年07月16日 0 点赞 0 评论 344 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要:```c #include #include typedef struct fushu { int shi; int xu; struct fushu* next…… 题解列表 2020年10月04日 0 点赞 0 评论 320 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> typedef struct lnode { int shi; int xu;…… 题解列表 2020年11月29日 0 点赞 0 评论 167 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2020年12月12日 0 点赞 0 评论 485 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(C语言代码)<<>>>省空间式指针 摘要:解题思路:注意事项:参考代码:#include<malloc.h> #include<stdio.h> typedef struct t { int a[2]; }*t0,t1; i…… 题解列表 2020年12月26日 0 点赞 0 评论 211 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项: %+d来确定 ±参考代码:#include <stdio.h>int main(){ int r,i;//实部、虚部 int num;//数据份数 int r_sum=0,i_…… 题解列表 2021年03月02日 0 点赞 0 评论 174 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ int a; int b; str…… 题解列表 2021年07月28日 0 点赞 0 评论 221 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> #include <stdlib.h> typedef struct fushu {…… 题解列表 2021年09月14日 0 点赞 0 评论 79 浏览 评分:0.0
蓝桥杯 复数求和自编链表完整版c++解法 摘要:解题思路:本题思路:1:比赛思路可以不通过链表的方法而直接使用遍历输入的办法直接求得结果。 2:这里采用数据结构中单链表中 题解列表 2022年01月02日 0 点赞 0 评论 261 浏览 评分:0.0
标准的写法 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int x; int y; …… 题解列表 2022年01月26日 0 点赞 0 评论 229 浏览 评分:0.0