1583: 蓝桥杯算法提高VIP-高精度乘法 摘要:解题思路:注意事项: 注意数组设置大小,要尽量大参考代码:#include<stdio.h> #include<string.h> int main(){ char a1…… 题解列表 2024年11月15日 0 点赞 0 评论 148 浏览 评分:0.0
直接打印就完了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a; scanf("%d",&a); printf("%c\n",a); return 0;}…… 题解列表 2024年11月15日 0 点赞 0 评论 221 浏览 评分:0.0
简单的写完就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a,b; scanf("%d%d",&a,&b); double c; c = (double)a…… 题解列表 2024年11月15日 0 点赞 0 评论 504 浏览 评分:0.0
蓝桥杯2024年第十五届决赛真题-数位翻转 摘要:解题思路:自行dp出来了将区间分为翻转区间与非翻转区间,区间总数是2*m+1数组元素分为状态翻转0与未翻转1它们之间的相互切换,转移为区间数+1堆积与rotate间的差值和为最优解注意事项:参考代码:…… 题解列表 2024年11月16日 0 点赞 0 评论 589 浏览 评分:0.0
1025: [编程入门]数组插入处理(冒泡排序) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[11],i; for(i=0;i<10;i++) { scanf("…… 题解列表 2024年11月16日 0 点赞 0 评论 273 浏览 评分:0.0
发工资咯,简单贪心 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量n表示输入的整数个数,a数组…… 题解列表 2024年11月16日 0 点赞 0 评论 345 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:char=input() print("%d"%ord(char))…… 题解列表 2024年11月16日 0 点赞 0 评论 118 浏览 评分:0.0
普通解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ double a ,b ,c,d; scanf("%lf%lf\n%lf%lf…… 题解列表 2024年11月16日 0 点赞 0 评论 167 浏览 评分:0.0
c++小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n,m,z,i=1; while (cin >> n) { …… 题解列表 2024年11月16日 0 点赞 0 评论 115 浏览 评分:0.0
1009: [编程入门]数字的处理与判断(简单暴力) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; gets(a); int len=…… 题解列表 2024年11月16日 1 点赞 0 评论 528 浏览 评分:0.0