蓝桥杯算法提高VIP-多项式输出-题解(C语言代码) 摘要: /* 题目描述 一元n 次多项式可用如下的表达式表示: f(x)=a[n]x^n+a[n-1]x^(n-1)+...+a[1]x+a[0], a[n]!=0 其中,a[i]x^i称…… 题解列表 2020年04月13日 0 点赞 0 评论 672 浏览 评分:0.0
大小写转换-题解(Python代码) 摘要:凑字数凑字数凑字数凑字数 ```python while True: s=input() if s=="End of file": break pr…… 题解列表 2020年04月13日 1 点赞 1 评论 1189 浏览 评分:4.3
蓝桥杯算法提高VIP-寻找三位数-题解(C++代码) 摘要:```cpp #include #include #include using namespace std; bool pan_s(int a){ int ge=a%10; …… 题解列表 2020年04月13日 0 点赞 0 评论 585 浏览 评分:0.0
数据结构-Floyd(弗洛伊德)最短路径算法 (C++代码)模方法手工的做法来做的 摘要:具体手工的做法可以参考我的简书:https://www.jianshu.com/p/7bc461a53e0e ```cpp #include using namespace std; i…… 题解列表 2020年04月13日 0 点赞 0 评论 949 浏览 评分:9.9
蓝桥杯算法提高VIP-计算时间-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main{ public static void main(String[] args){ …… 题解列表 2020年04月13日 0 点赞 0 评论 678 浏览 评分:7.3
二级C语言-求偶数和-题解(C语言代码) 摘要:写给自己看的,完全没必要吧数字存着 可以随取随用 ```c #include int main() { int n,t,sum=0; scanf("%d",&n); for(…… 题解列表 2020年04月13日 0 点赞 0 评论 822 浏览 评分:8.0
定义一个栈来实现进制的转换 摘要:```css #include #define N 10 int main(void) { int n; int stack[N],top=-1; scanf("…… 题解列表 2020年04月13日 0 点赞 0 评论 764 浏览 评分:8.0
整除的尾数-题解(Python代码) 摘要:```python while True: m,n=map(int,input().split()) if m==0 and n==0: break …… 题解列表 2020年04月13日 0 点赞 0 评论 1003 浏览 评分:0.0
数字统计-题解(Python代码) 摘要:```python n=int(input()) lis=[0,0,0,0,0,0,0,0,0,0] for i in range(1,n+1): while i>=10: …… 题解列表 2020年04月13日 0 点赞 0 评论 877 浏览 评分:8.0
[编程入门]三个数最大值-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int a[3], max; for (int i = 0; i > a…… 题解列表 2020年04月13日 0 点赞 0 评论 1597 浏览 评分:9.9