编写题解 2071: [STL训练]壮志难酬 find 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> #include<vector> using namespace std; int mai…… 题解列表 2022年04月30日 0 点赞 0 评论 385 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:此题就是把一个字符串的字母用它后面的第4个字母来代替。注意事项:当字母往后移四格,要判断它会不会越界,而且要分条件进行移位。参考代码:#include<bits/stdc++.h>//万能头…… 题解列表 2022年04月30日 0 点赞 3 评论 1846 浏览 评分:9.9
编写题解 2069: [STL训练]Let the Balloon Rise map 摘要:想知道为什么错误??参考代码:正确的 #include<iostream> #include<string> #include<algorithm> #include<vector> #…… 题解列表 2022年04月30日 0 点赞 0 评论 308 浏览 评分:0.0
求平方和题解 摘要:解题思路:就个输入输出!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ scanf("%d%d",…… 题解列表 2022年04月30日 0 点赞 0 评论 641 浏览 评分:9.0
[编程入门]利润计算题解 摘要:解题思路:这题就是纯属暴力判断。注意事项:数要算准!参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ sc…… 题解列表 2022年04月30日 0 点赞 1 评论 521 浏览 评分:9.9
编写题解 1261: 速算24点(python) 摘要:itertools是一个迭代器模块,具体功能详见 https://docs.python.org/3/library/itertools.html#参考代码:import itertools c…… 题解列表 2022年04月30日 0 点赞 0 评论 764 浏览 评分:9.9
The 3n + 1 problem 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,max,a,b,rest; while(~scanf("%d %d",&a,&b)) { …… 题解列表 2022年04月30日 0 点赞 0 评论 414 浏览 评分:0.0
编写题解 1142: C语言训练-立方和不等式(python) 摘要:n = int(input()) s = t = 0 i = 1 while t <= n: t += pow(i, 3) s += 1 i += 1 prin 题解列表 2022年04月30日 0 点赞 0 评论 526 浏览 评分:9.9
1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:这道题其实就是简单的输入输出,即第一行输出“**************************”,第二行输出“Hello World!”,第三行输出“*******************…… 题解列表 2022年04月30日 0 点赞 0 评论 516 浏览 评分:7.0
蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a…… 题解列表 2022年04月30日 0 点赞 0 评论 409 浏览 评分:0.0