题解 1044: [编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char str[3][50]; //定义3个数组 int i,j; …… 题解列表 2022年03月04日 0 点赞 0 评论 571 浏览 评分:0.0
蓝桥杯2019年第十届国赛真题-最优包含 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;int dp[1005…… 题解列表 2022年03月04日 0 点赞 0 评论 1211 浏览 评分:8.7
利息计算--简单 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip> // 小数using namespace std;int main(){ double n…… 题解列表 2022年03月04日 0 点赞 0 评论 371 浏览 评分:0.0
Python解决 ——2010辽宁省决赛 摘要:解题思路:1.按照题目要求分别用列表来装数据 2.分别筛选出A和B的交集,以及前者和C的交集的结果,然后用C减去 3.如果这个列表为空,则输出“No enemy spy”,反之,输出列表中的结果。注意…… 题解列表 2022年03月04日 0 点赞 0 评论 409 浏览 评分:0.0
1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:和 1012: [编程入门]字符串分类统计 一模一样,区别只是本题要写子函数。1012题链接:https://blog.dotcpp.com/a/84267注意事项:maxSize一开始设…… 题解列表 2022年03月04日 0 点赞 0 评论 711 浏览 评分:9.5
蓝桥杯算法提高VIP-字符串跳步-题解(C++代码) 摘要:#include <iostream> using namespace std; int main() { string temp; cin >> temp; int start, s…… 题解列表 2022年03月04日 0 点赞 0 评论 387 浏览 评分:0.0
蓝桥杯算法提高VIP-删除数组中的0元素(c伪删除) 摘要:```cpp #include #include #include #include #include using namespace std; int main() { in…… 题解列表 2022年03月04日 0 点赞 0 评论 958 浏览 评分:9.9
编写题解 1236: 母牛生小牛 摘要:解题思路:注意事项:参考代码:两种解法n=int(input()) ls=[1,1,1] if n <=3: print(1) else: for i in range(n-…… 题解列表 2022年03月04日 0 点赞 0 评论 441 浏览 评分:0.0
随便做做,记录 摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { public static void main(String[] args) {…… 题解列表 2022年03月04日 0 点赞 0 评论 346 浏览 评分:0.0
编写题解 1009: [编程入门]数字的处理与判断--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ long int a,tem…… 题解列表 2022年03月04日 0 点赞 0 评论 378 浏览 评分:0.0