[编程入门]利润计算题解 摘要:解题思路:这题就是纯属暴力判断。注意事项:数要算准!参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main(){ sc…… 题解列表 2022年04月30日 0 点赞 1 评论 504 浏览 评分:9.9
编写题解 1261: 速算24点(python) 摘要:itertools是一个迭代器模块,具体功能详见 https://docs.python.org/3/library/itertools.html#参考代码:import itertools c…… 题解列表 2022年04月30日 0 点赞 0 评论 735 浏览 评分: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 评论 395 浏览 评分: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 评论 502 浏览 评分:9.9
1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:这道题其实就是简单的输入输出,即第一行输出“**************************”,第二行输出“Hello World!”,第三行输出“*******************…… 题解列表 2022年04月30日 0 点赞 0 评论 490 浏览 评分:7.0
蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a…… 题解列表 2022年04月30日 0 点赞 0 评论 386 浏览 评分:0.0
编写题解 2024: 链表删除练习 vector 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<vector> using namespace st…… 题解列表 2022年04月30日 0 点赞 0 评论 324 浏览 评分:0.0
蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { cin>>n; while…… 题解列表 2022年04月30日 0 点赞 0 评论 333 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { while(cin>>a) p…… 题解列表 2022年04月30日 0 点赞 0 评论 351 浏览 评分:0.0
蓝桥杯算法提高VIP-十进制数转八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { cin>>a; printf…… 题解列表 2022年04月30日 0 点赞 0 评论 340 浏览 评分:0.0