有趣的比赛-题解(Java代码) 摘要:```java public static int score; public static int ans=0; public static int vis[]=new int [11];…… 题解列表 2020年04月06日 0 点赞 0 评论 577 浏览 评分:2.0
密码-题解(Python代码) 摘要:```python m=int(input()) for i in range(0,m): #输入m行密码 s=input() if len(s)>=8 and len(s)=…… 题解列表 2020年04月08日 0 点赞 0 评论 875 浏览 评分:2.0
蓝桥杯算法训练-P1103-题解(C语言代码) 摘要:```c #include int main() { char ch; double a,b,c,d; scanf("%c%lf%lf%lf%lf",&ch,&a,&…… 题解列表 2020年04月08日 0 点赞 1 评论 709 浏览 评分:2.0
蓝桥杯算法提高-JOE的算数-题解(Java代码) 摘要:public static void main(String[] args) { Scanner scanner=new Scanner(System.in); long a=scanne…… 题解列表 2020年04月09日 0 点赞 1 评论 552 浏览 评分:2.0
蓝桥杯2019年第十届真题-旋转-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int n,m; cin>>n>>m; int a[n][m]; …… 题解列表 2020年04月14日 0 点赞 0 评论 454 浏览 评分:2.0
上车人数-题解(Java代码)这题就是穷举法 摘要:```java public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int …… 题解列表 2020年04月17日 0 点赞 0 评论 539 浏览 评分:2.0
蓝桥杯算法训练VIP-比较字符串-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a,b; cin>>a>>b; int a_len=…… 题解列表 2020年04月18日 0 点赞 0 评论 675 浏览 评分:2.0
蓝桥杯算法训练-出现次数最多的整数-题解(C语言代码) 摘要:#include #include //#define swap(a,b) {int t=a;a=b;b=t;} int main() { int n,m; int count=1,i,*…… 题解列表 2020年04月19日 0 点赞 0 评论 739 浏览 评分:2.0
陈教主的三角形-题解(Python代码) 摘要:```python while True: a,b,c=map(int,input().strip().split()) if(a+b>c and a+c>b and b+c>a…… 题解列表 2020年04月20日 0 点赞 0 评论 535 浏览 评分:2.0
C语言训练-求车速-题解(C++代码) 摘要:```cpp #include using namespace std; int f(int n); int main() { int n=95860; while(1) …… 题解列表 2020年04月23日 0 点赞 0 评论 709 浏览 评分:2.0