可AC (C语言代码) 摘要:解题思路: 注意事项: 参考代码: #include<stdlib.h> #include<stdio.h> typedef struct node { int real;…… 题解列表 2018年07月26日 1 点赞 0 评论 1197 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 (C语言代码) 摘要:解题思路: %+-d :如果该数是整数则输出 + 反之输出 - 例如:a=6, %+-a,输出+6; b=-3, %+-b, 输出 -3;注意事项:参考代码:…… 题解列表 2018年11月12日 2 点赞 0 评论 586 浏览 评分:8.7
蓝桥杯算法提高VIP-复数求和 (C语言代码) 摘要:#include<stdio.h>struct A{ int shibu; int xubu; struct A *p;};int main(){ int n,i,shi=0,xu=0; scanf(…… 题解列表 2019年02月14日 0 点赞 0 评论 328 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 (C语言代码) 摘要: //解题思路:键盘读入 ,链表存储 ,遍历链表, 复数相加在输出函数里完成 //注意事项:照着题目来 初始化那个temp头结点,输出函数那个temp就是个临时结点 …… 题解列表 2019年02月24日 1 点赞 0 评论 2158 浏览 评分:9.9
没有用链表。。。。居然对了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,d,i=0,j=0; scanf("%d",&a); for(d=0;d<a;d++){ …… 题解列表 2019年03月08日 0 点赞 0 评论 385 浏览 评分:0.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 评论 607 浏览 评分:3.0
蓝桥杯算法提高VIP-复数求和 (C语言代码)使用链表求解 摘要:#include<stdio.h> #include<stdlib.h> typedef struct _complex{ int real; int imag; s…… 题解列表 2019年05月25日 0 点赞 0 评论 437 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要: #include #include #include //定义结构体 typedef struct linklist { int re ;//实部 in…… 题解列表 2019年06月25日 0 点赞 0 评论 524 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和-题解(C++代码) 摘要:### 没有用链表,由于自己太垃圾 不是很熟练 #### 解题思路: **1、用类的成员函数来重载运算符 2、答案分各种情况,复数,纯虚数,纯实数,自己设置好是加法运算还是减法运算,…… 题解列表 2019年10月14日 0 点赞 0 评论 416 浏览 评分:8.0
蓝桥杯算法提高VIP-复数求和-题解(Python代码)python 摘要:```python suma=sumb=0#定义初始化 n = int(input())#输入组数值 for i in range(n):#组数 a,b=map(int,input()…… 题解列表 2019年11月25日 0 点赞 0 评论 811 浏览 评分:8.0