复数求和 (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 评论 1167 浏览 评分:2.0
c链表 摘要:#include<stdio.h>struct Node{ int shi; int xu; struct Node *next;};struct Node *createList(int n){ s…… 题解列表 2017年12月04日 0 点赞 0 评论 1552 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 (C语言代码) 摘要:参考代码:#include <stdio.h> #include <malloc.h> typedef struct linklist { int real,image; s…… 题解列表 2018年01月30日 1 点赞 0 评论 1581 浏览 评分:8.9
可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