蓝桥杯基础练习VIP-阶乘计算-题解(用int数组其实很简单) 摘要:参考代码:#include<iostream> using namespace std; int main() { int n, r = 0, t, a[3000] = { 1 }, l…… 题解列表 2021年02月06日 0 点赞 0 评论 739 浏览 评分:9.9
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值-题解(C语言代码) 摘要:大神还是很多,什么大数据啥的完全看不懂QAQ 主要是第一次输入的数 ```c #include int main() { int a,n,s=0;//a为第一次输入的数,n为n个数…… 题解列表 2021年02月06日 0 点赞 0 评论 458 浏览 评分:0.0
DNA-题解(Java代码) 摘要: Scanner scanner=new Scanner(System.in); int num=scanner.nextInt(); int[][]arr=new int[num][2…… 题解列表 2021年02月06日 0 点赞 0 评论 492 浏览 评分:0.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:```c #include int main(void) { int a,b; while(scanf("%d%d",&a,&b)!=EOF) { printf("%…… 题解列表 2021年02月06日 0 点赞 0 评论 321 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include int main(void) { char a[100]; int i; gets(a); for(i=0;a[i]!='\0';i…… 题解列表 2021年02月06日 0 点赞 0 评论 355 浏览 评分:0.0
[编程入门]三个数字的排序-题解(C语言代码) 摘要:```c #include int main(void) { int a,b,c,t; scanf("%d%d%d",&a,&b,&c); if(a>b) { …… 题解列表 2021年02月06日 0 点赞 0 评论 402 浏览 评分:0.0
统计字符数-题解(C语言代码) 摘要:解题思路:注意事项: 参考代码:#include <stdio.h> #include <string.h> int main() { char a[1005]; int b[26]=…… 题解列表 2021年02月06日 0 点赞 0 评论 409 浏览 评分:0.0
[编程入门]三个字符串的排序-题解(C语言代码) 摘要:```c #include #include int main(void) { char a[100],b[100],c[100],temp[100]; gets(a); …… 题解列表 2021年02月06日 0 点赞 0 评论 499 浏览 评分:0.0
数字整除-题解(Python代码) 摘要:解题思路:没什么难点,注意利用好py的切片机制。注意事项:参考代码:while(1): str=input() if(str[0]=='0'…… 题解列表 2021年02月06日 0 点赞 0 评论 644 浏览 评分:0.0
优质题解 数据结构-AVL详解(C++代码)(小白向) 摘要:# Part -1 前置算法 由于平衡二叉树的目的是调整平衡,使搜索的速度保持`logn`,所以请在学任何平衡树之前请了解有关于**二叉搜索树**的特性与基本操作(增删改查) # Part…… 题解列表 2021年02月06日 0 点赞 0 评论 875 浏览 评分:9.9