题解 2080: 蓝桥杯基础练习-十六进制转八进制 摘要:解题思路:注意事项:直接上代码参考代码:n = input()d = int(n, 16)print(d)…… 题解列表 2022年03月18日 0 点赞 0 评论 541 浏览 评分:2.0
十六进制转十进制 摘要:```python n = input() d = int(n, 16) print(d) ```# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,…… 题解列表 2022年03月18日 0 点赞 0 评论 573 浏览 评分:2.0
个人认为比较直观 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c,x; scanf("%d",&x); a=x/100; b=x/10…… 题解列表 2022年03月18日 0 点赞 0 评论 401 浏览 评分:0.0
[编程入门]完数的判断(含解题思路) 摘要:##[编程入门]完数的判断 ```c #include int main() { int i,b[5000],p=0,s=0; int n,j; scanf("%d",&j); …… 题解列表 2022年03月18日 0 点赞 0 评论 559 浏览 评分:0.0
题目-翻硬币 摘要:参考代码:#include"bits/stdc++.h" using namespace std; bool a[11111]; bool b[11111]; long long ans…… 题解列表 2022年03月18日 0 点赞 0 评论 462 浏览 评分:0.0
蓝桥杯算法提高VIP-分数统计(利用stl易理解) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int>…… 题解列表 2022年03月18日 0 点赞 0 评论 567 浏览 评分:0.0
利润计算 简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); switch(a/100000) { …… 题解列表 2022年03月18日 0 点赞 0 评论 431 浏览 评分:9.9
[编程入门]阶乘求和 摘要:##[编程入门]阶乘求和 ```c #include int main() { long i,j,n,s=0,k; scanf("%d",&n); for(i=1;i…… 题解列表 2022年03月18日 0 点赞 0 评论 481 浏览 评分:0.0
暴力破解! 摘要:```cpp #include using namespace std; int ans = 0, n; const int N = 1000000; int arr[1000000…… 题解列表 2022年03月18日 0 点赞 0 评论 420 浏览 评分:0.0
蓝桥杯基础练习VIP-FJ的字符串 摘要:解题思路:后一项=前一项+新增加的字母+前一项注意事项:参考代码:n=int(input())a=['']for i in range(0,n): s=a[0]+chr(ord(…… 题解列表 2022年03月18日 0 点赞 0 评论 515 浏览 评分:9.9