Hifipsysta-1932-蓝桥杯算法提高VIP-第二大整数(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ int tmp; vector …… 题解列表 2022年02月10日 0 点赞 0 评论 414 浏览 评分:0.0
Hifipsysta-1743-大整数排序(C++代码) 摘要:```cpp #include #include #include #include using namespace std; bool sort_rule(string a, str…… 题解列表 2022年02月10日 0 点赞 0 评论 441 浏览 评分:0.0
C++ 利用string创建str对象 摘要:解题思路:利用c++ string 创建str对象 类似于字符数组注意事项:第二行末尾没有空格参考代码:/**********************************************…… 题解列表 2022年02月10日 0 点赞 0 评论 600 浏览 评分:0.0
Hifipsysta-1915-蓝桥杯算法提高VIP-三个整数的排序 摘要:```cpp #include #include #include using namespace std; int main(){ vector myvect; i…… 题解列表 2022年02月10日 0 点赞 0 评论 1050 浏览 评分:0.0
Hifipsysta-1756-整数奇偶排序(C++代码) 摘要:```cpp #include #include #include using namespace std; int main(){ int tmp; vector …… 题解列表 2022年02月10日 0 点赞 0 评论 527 浏览 评分:0.0
没有java的,我来写一个 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args)…… 题解列表 2022年02月10日 0 点赞 0 评论 422 浏览 评分:0.0
查找最大元素 摘要:解题思路:自己看吧!垃圾题目,花了我那么长时间调试。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[101]; c…… 题解列表 2022年02月10日 0 点赞 0 评论 386 浏览 评分:0.0
Hifipsysta-2006-寻找奇整数(C++代码) 摘要:```cpp #include #include #include #include using namespace std; int main(){ string str_…… 题解列表 2022年02月10日 0 点赞 0 评论 541 浏览 评分:0.0
Hifipsysta-1635: 蓝桥杯算法训练VIP-整数平均值 摘要:```cpp #include using namespace std; int main(){ int N, tmp, sum=0; while(cin>>N){ …… 题解列表 2022年02月11日 0 点赞 0 评论 377 浏览 评分:0.0
Hifipsysta-2225-蓝桥杯算法训练-出现次数最多的整数(C++代码)基于STL的实现 摘要:```cpp #include #include using namespace std; int main(){ int N, tmp; cin>>N; m…… 题解列表 2022年02月11日 0 点赞 0 评论 323 浏览 评分:0.0