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 评论 462 浏览 评分: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 评论 584 浏览 评分:9.9
1001: [编程入门]第一个HelloWorld程序 摘要:解题思路:这道题其实就是简单的输入输出,即第一行输出“**************************”,第二行输出“Hello World!”,第三行输出“*******************…… 题解列表 2022年04月30日 0 点赞 0 评论 571 浏览 评分:7.0
蓝桥杯基础练习-十六进制转十进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a…… 题解列表 2022年04月30日 0 点赞 0 评论 455 浏览 评分:0.0
编写题解 2024: 链表删除练习 vector 摘要:参考代码:#include<iostream> #include<string> #include<algorithm> #include<vector> using namespace st…… 题解列表 2022年04月30日 0 点赞 0 评论 481 浏览 评分:0.0
蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { cin>>n; while…… 题解列表 2022年04月30日 0 点赞 0 评论 420 浏览 评分:0.0
数据结构-八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { while(cin>>a) p…… 题解列表 2022年04月30日 0 点赞 0 评论 420 浏览 评分:0.0
蓝桥杯算法提高VIP-十进制数转八进制数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { cin>>a; printf…… 题解列表 2022年04月30日 0 点赞 0 评论 410 浏览 评分:0.0
简单易懂,极简 摘要:解题思路:注意事项:参考代码:int main(){ int x = 0; int y = 0; while ((x = getchar()) != '\n') { if (x ==…… 题解列表 2022年04月30日 0 点赞 0 评论 426 浏览 评分:9.9
蓝桥杯算法提高VIP-第二大整数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;set<int> st;int main() { int num; wh…… 题解列表 2022年04月30日 0 点赞 0 评论 350 浏览 评分:0.0