[编程入门]结构体之时间设计 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2022年03月18日 0 点赞 0 评论 464 浏览 评分:9.9
蓝桥杯基础练习VIP-FJ的字符串 摘要:解题思路:后一项=前一项+新增加的字母+前一项注意事项:参考代码:n=int(input())a=['']for i in range(0,n): s=a[0]+chr(ord(…… 题解列表 2022年03月18日 0 点赞 0 评论 408 浏览 评分:9.9
暴力破解! 摘要:```cpp #include using namespace std; int ans = 0, n; const int N = 1000000; int arr[1000000…… 题解列表 2022年03月18日 0 点赞 0 评论 368 浏览 评分:0.0
[编程入门]阶乘求和 摘要:##[编程入门]阶乘求和 ```c #include int main() { long i,j,n,s=0,k; scanf("%d",&n); for(i=1;i…… 题解列表 2022年03月18日 0 点赞 0 评论 443 浏览 评分:0.0
利润计算 简单明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d",&a); switch(a/100000) { …… 题解列表 2022年03月18日 0 点赞 0 评论 367 浏览 评分:9.9
蓝桥杯算法提高VIP-分数统计(利用stl易理解) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; vector<int>…… 题解列表 2022年03月18日 0 点赞 0 评论 434 浏览 评分:0.0
题目-翻硬币 摘要:参考代码:#include"bits/stdc++.h" using namespace std; bool a[11111]; bool b[11111]; long long ans…… 题解列表 2022年03月18日 0 点赞 0 评论 324 浏览 评分: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 评论 480 浏览 评分:0.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 评论 314 浏览 评分:0.0
十六进制转十进制 摘要:```python n = input() d = int(n, 16) print(d) ```# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,…… 题解列表 2022年03月18日 0 点赞 0 评论 488 浏览 评分:2.0