蓝桥杯算法提高VIP-身份证排序 (C++) 摘要:解题思路: 数组比<vector>快一些#include<iostream> #include<algorithm> #include<vector> #include<cstdio> ty…… 题解列表 2021年12月10日 0 点赞 0 评论 497 浏览 评分:0.0
1046: [编程入门]自定义函数之数字后移 摘要:import java.io.*; /** * 善用 System.arraycopy() */ public class Main { public static Bu…… 题解列表 2021年12月10日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 1067: 二级C语言-分段函数 摘要:解题思路:注意事项:#include<iostream>#include<cmath>using namespace std;int main(){ double x,y; cin>>x;…… 题解列表 2021年12月10日 0 点赞 0 评论 270 浏览 评分:0.0
1196: 去掉空格 摘要:关键是运用find()函数和erase()函数。#include<bits/stdc++.h> using namespace std; int main(){ vector<in…… 题解列表 2021年12月10日 0 点赞 0 评论 685 浏览 评分:0.0
蓝桥杯算法提高VIP-选择排序(C++) 非递归 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> #include<cstdio> using namespace std; int …… 题解列表 2021年12月10日 0 点赞 0 评论 369 浏览 评分:0.0
1130: C语言训练-数字母 摘要:此题关键是使用isalpha()函数,注意读数据使用getline()。(尽管使用cin也能过)#include<bits/stdc++.h> using namespace std; int m…… 题解列表 2021年12月10日 0 点赞 0 评论 369 浏览 评分:0.0
1124: C语言训练-大、小写问题 摘要:此题关键是使用isupper()函数,另外注意读数据使用getline()。#include<bits/stdc++.h> using namespace std; int main(){ …… 题解列表 2021年12月10日 0 点赞 0 评论 274 浏览 评分:0.0
蓝桥杯基础练习-数列排序(C++) 摘要:解题思路: 测试数据居然没有重复的数字注意事项:参考代码:#include<iostream> #include<set> using namespace std; //multiset<int…… 题解列表 2021年12月10日 0 点赞 0 评论 350 浏览 评分:0.0
1012: [编程入门]字符串分类统计 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2021年12月10日 0 点赞 0 评论 310 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2021年12月11日 0 点赞 0 评论 446 浏览 评分:0.0