蓝桥杯算法训练VIP-链表数据求和操作(记录在案) 摘要:#include <stdio.h> #include <malloc.h> typedef struct plural { int real; int imag; …… 题解列表 2022年07月19日 0 点赞 0 评论 337 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和(参考了上一题优质题解的代码改的,记录在案) 摘要:#include #include typedef struct plural { int real; int imag; struct plural *…… 题解列表 2022年07月19日 0 点赞 0 评论 419 浏览 评分:0.0
SInzoL--题解 1264: 防御导弹 摘要:####看到大多数的题解都是用数组记忆,再比较最大值来做的,我给大家提供一个不同的思路:dfs(超弱的) ###粘代码: ```cpp #include using namespace std…… 题解列表 2022年07月19日 0 点赞 0 评论 636 浏览 评分:9.9
[编程入门]选择排序 摘要:#include<stdio.h> int main() { int a[10],min,key,i,j; for(i=0;i<10;i++) { scanf("%d …… 题解列表 2022年07月19日 0 点赞 0 评论 304 浏览 评分:0.0
超好懂的字符串的连接 摘要:解题思路:就两个char 类型的函数呗,先输入,在写一个函数用另一个数组将它们存储,最后输出即可;注意事项:注意先后顺序即可;参考代码:#include<stdio.h>#include<string…… 题解列表 2022年07月19日 0 点赞 0 评论 667 浏览 评分:8.5
字符串编码(C++) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ string str; cin >> str; int …… 题解列表 2022年07月18日 0 点赞 0 评论 537 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断(未使用数组) 摘要:```c //完数的判断 #include int main(){ int n; scanf("%d", &n); for( int i=1; i…… 题解列表 2022年07月18日 0 点赞 0 评论 451 浏览 评分:9.9
数组插入处理——c语言版 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[10],n,j; for(i=0;i<9;i++) scanf("%d",&a[i]); sc…… 题解列表 2022年07月18日 0 点赞 0 评论 378 浏览 评分:9.9
题解 1169: 绝对值排序 摘要:#include<stdio.h> #include<math.h> int main() { int i,j,t,n; while(scanf("%d",&n)!=EO…… 题解列表 2022年07月18日 0 点赞 0 评论 477 浏览 评分:7.0
C语言训练-排序问题<1> 摘要:#include<stdio.h> int main() { int a[4]; int i,j,t; for(i=0;i<4;i++) sc…… 题解列表 2022年07月18日 0 点赞 0 评论 801 浏览 评分:9.3