题解列表
蓝桥杯算法提高VIP-十进制数转八进制数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a;int main() { cin>>a; printf……
蓝桥杯基础练习-十六进制转八进制
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { cin>>n; while……
编写题解 2024: 链表删除练习 vector
摘要:参考代码:#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
using namespace st……
蓝桥杯基础练习-十六进制转十进制
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,n;int main() { scanf("%llX",&a……
1001: [编程入门]第一个HelloWorld程序
摘要:解题思路:这道题其实就是简单的输入输出,即第一行输出“**************************”,第二行输出“Hello World!”,第三行输出“*******************……
编写题解 1142: C语言训练-立方和不等式(python)
摘要:n = int(input())
s = t = 0
i = 1
while t <= n:
t += pow(i, 3)
s += 1
i += 1
prin
The 3n + 1 problem
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,max,a,b,rest; while(~scanf("%d %d",&a,&b)) { ……
编写题解 1261: 速算24点(python)
摘要:itertools是一个迭代器模块,具体功能详见 https://docs.python.org/3/library/itertools.html#参考代码:import itertools
c……