1019: [编程入门]自由下落的距离计算(简单的解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; double n,m,k=0,num=0; scanf("%lf %lf",&m…… 题解列表 2024年11月15日 0 点赞 0 评论 230 浏览 评分:0.0
比较简单的代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int gcd(int a,int b); int lcm(int a,int b);int main(){ int m,n;…… 题解列表 2024年11月15日 1 点赞 0 评论 385 浏览 评分:0.0
普通解题方法 摘要:解题思路:没什么好想的注意事项:注意空格数就行了。参考代码:#include<stdio.h>int main(){char c;scanf ("%c",&c ); printf(" %c \n"…… 题解列表 2024年11月15日 2 点赞 0 评论 1065 浏览 评分:0.0
普通解题方法 摘要:解题思路:注意事项:看就行了。参考代码:#include<stdio.h>int main (){ char c; c = getchar(); char d; d = c+32; if('A…… 题解列表 2024年11月15日 0 点赞 0 评论 184 浏览 评分:0.0
无虑,无悔,无题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ printf("yes\n"); return 0;}…… 题解列表 2024年11月15日 0 点赞 0 评论 189 浏览 评分:0.0
八皇后,来看看吧真的很详细了 摘要:解题思路:特别注意右对角线不能写X-Y哦!n*n的棋盘大小也就是能放n个皇后数组大小要定义30以上哦参考代码:#include"bits/stdc++.h" using namespace std;…… 题解列表 2024年11月15日 2 点赞 0 评论 593 浏览 评分:0.0
1583: 蓝桥杯算法提高VIP-高精度乘法 摘要:解题思路:注意事项: 注意数组设置大小,要尽量大参考代码:#include<stdio.h> #include<string.h> int main(){ char a1…… 题解列表 2024年11月15日 0 点赞 0 评论 204 浏览 评分:0.0
直接打印就完了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a; scanf("%d",&a); printf("%c\n",a); return 0;}…… 题解列表 2024年11月15日 0 点赞 0 评论 345 浏览 评分:0.0
简单的写完就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a,b; scanf("%d%d",&a,&b); double c; c = (double)a…… 题解列表 2024年11月15日 1 点赞 0 评论 731 浏览 评分:0.0
蓝桥杯2024年第十五届决赛真题-数位翻转 摘要:解题思路:自行dp出来了将区间分为翻转区间与非翻转区间,区间总数是2*m+1数组元素分为状态翻转0与未翻转1它们之间的相互切换,转移为区间数+1堆积与rotate间的差值和为最优解注意事项:参考代码:…… 题解列表 2024年11月16日 0 点赞 0 评论 727 浏览 评分:0.0