蓝桥杯基础练习VIP-时间转换C++ 摘要:#include<iostream>using namespace std;int main() { int n,h,m,s,a; cin >> n; h = n / 3600; …… 题解列表 2022年03月01日 0 点赞 0 评论 327 浏览 评分:9.9
数据结构-链表的基本操作(c++) 摘要:#include <iostream> #include <cstring> #include <string> #include <stdlib.h> using namespace std…… 题解列表 2022年03月01日 0 点赞 0 评论 898 浏览 评分:9.9
直译法简单理解 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main(){ int n,m; int maze[500…… 题解列表 2022年03月01日 0 点赞 0 评论 577 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;void out(string a){ for(int i=0;i<4;i++){ …… 题解列表 2022年03月01日 0 点赞 0 评论 343 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;void copy(string a){ for(int…… 题解列表 2022年03月01日 0 点赞 0 评论 348 浏览 评分:0.0
蓝桥杯基础练习VIP-字符串对比 摘要:解题思路:通过代码实现相应情况注意事项:参考代码:#include"iostream"#include<cstring>#include<string>using namespace std;stri…… 题解列表 2022年03月01日 0 点赞 0 评论 400 浏览 评分:0.0
Hifipsysta-2048-多重背包(C++代码) 摘要:```cpp #include using namespace std; const int maxLen = 3e3+10; int weight[maxLen]; int value[…… 题解列表 2022年03月01日 0 点赞 0 评论 757 浏览 评分:0.0
2009: 第一个带类的C++程序 摘要:解题思路:本题输入的不是3个整数而是字符串,所以难点在于如何高效的把字符串转成数字。我的想法是把输入的读入一个char数组,遍历此数组,遇到'-'就切换,遇到数字就加到另一个存放日期数…… 题解列表 2022年03月01日 0 点赞 0 评论 671 浏览 评分:9.9
太简单了,我都不想解释 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a,b; while(cin>>a…… 题解列表 2022年03月01日 0 点赞 0 评论 464 浏览 评分:4.0
[STL训练]A+B 不用 stringstream也可以做 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string fun(std::string s){ while(1){ …… 题解列表 2022年03月01日 0 点赞 0 评论 469 浏览 评分:0.0