蓝桥杯基础练习-数列排序-题解(C++代码)超级简单!!!! 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<vector> #include<algorithm> using namespace std; void…… 题解列表 2021年02月14日 0 点赞 0 评论 515 浏览 评分:6.0
二级C语言-求偶数和-题解(C语言代码) 摘要:解题思路:就是数组和筛选偶数的问题,弄个循环就行注意事项:注意取地址和多语句要加上花括号参考代码:#include<stdio.h>int main(){ int a[20],i,n,sum=0; …… 题解列表 2021年02月15日 0 点赞 0 评论 630 浏览 评分:6.0
求组合数(Java代码) 大数 摘要:解题思路: 大数注意事项:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main { p…… 题解列表 2021年02月16日 0 点赞 0 评论 853 浏览 评分:6.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>void fun(char *a,char *b){ in…… 题解列表 2021年02月17日 0 点赞 0 评论 663 浏览 评分:6.0
[编程入门]三个数最大值-题解(Python代码) 摘要:参考代码:a,b,c = map(int,input().split())if a>b and a>c: print(a)elif b>a and b>c: print(b)else: …… 题解列表 2021年02月18日 0 点赞 2 评论 786 浏览 评分:6.0
[编程入门]分段函数求值-题解(Python代码) 摘要:x = float(input())if x < 1: print(int(x))elif 1 <= x < 10: print(int(2*x-1))else: print(int…… 题解列表 2021年02月18日 0 点赞 0 评论 565 浏览 评分:6.0
[编程入门]三个数找最大值-题解(Python代码) 摘要:a, b, c = map(int, input().split())if a > b and a > c: print(a)elif b > a and b > c: print(b)e…… 题解列表 2021年02月18日 0 点赞 0 评论 562 浏览 评分:6.0
鸡兔同笼-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int s; int x = 0, y = 0;// x 为鸡的数量 y 为兔的数量 scanf("%d", &…… 题解列表 2021年02月18日 0 点赞 0 评论 1003 浏览 评分:6.0
自动晾衣机 (Java代码)模拟 摘要:解题思路: 数组模拟就行 注意事项: 题目的n和环形根本没限制好……,AC只需数组开完就行参考代码:import java.util.Scanner; /** …… 题解列表 2021年02月18日 0 点赞 0 评论 585 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int score; …… 题解列表 2021年02月18日 0 点赞 0 评论 616 浏览 评分:6.0