题解列表
蓝桥杯算法提高VIP-复数求和
摘要:#include<stdio.h>
#include<stdlib.h>
typedef struct elemtype {
int a;
int b;
struct elem……
蓝桥杯算法训练VIP-链表数据求和操作(有老六解法,C语言)
摘要:老六解题法
#include<stdio.h>
int main(){
int a[10],b[10];
int sum1 = 0,sum2 = 0;
for(int i=0;……
------数字分离-----
摘要:解题思路:利用字符数组来接受数据然后顺序打印即可法一用函数法二不用函数感觉比法一还简洁一点若说错了请多多包含注意事项:参考代码://法一:/*题目 1034: [编程入门]自定义函数之数字分离题目描述……