2900: 螺旋加密 摘要:```cpp #include using namespace std; int a[25][25],b[90],c[25][25],d[410]; int main() { in…… 题解列表 2023年01月11日 0 点赞 0 评论 317 浏览 评分:9.9
[编程入门]报数问题(水题) 摘要:```c #include int f(int n,int m){ if(n==1) return 0;//递归出口 else return (f(n-1,3)+3)%n; } in…… 题解列表 2023年01月11日 0 点赞 0 评论 184 浏览 评分:9.9
思路清晰,看了就懂 摘要:#include<stdio.h> int main(){ long long a,b,n,sum=0; long long t=0,day,T=0,i=0; scanf("%lld %lld %l…… 题解列表 2023年01月11日 0 点赞 3 评论 603 浏览 评分:9.9
数字整除(水题但投机取巧) 摘要:```c #include int main(){ char s[200]; int i,sum; while(scanf("%s",s)&&(s[0]!='0')){ s…… 题解列表 2023年01月11日 2 点赞 0 评论 264 浏览 评分:9.9
2782: 整数大小比较 摘要:```cpp #include using namespace std; int main() { int x,y; cin>>x>>y; if(x>y) …… 题解列表 2023年01月11日 0 点赞 0 评论 457 浏览 评分:9.9
2781: 奇偶ASCII值判断 摘要:```cpp #include using namespace std; int main() { char ch; cin>>ch; if(int(ch)&1)…… 题解列表 2023年01月11日 0 点赞 0 评论 622 浏览 评分:9.9
2661: 蓝桥杯2022年第十三届省赛真题-扫雷 摘要:亿小时的奋斗后,终于找到了答案 ```cpp #include #include using namespace std; typedef long long LL; const int …… 题解列表 2023年01月11日 0 点赞 2 评论 1353 浏览 评分:8.3
弟弟的作业(水题) 摘要:```c #include int main(){ int a,b,i,cnt=0,sum; char ch,s[10]; while(scanf("%d%c%d=%s",&a,…… 题解列表 2023年01月11日 0 点赞 0 评论 362 浏览 评分:9.9
Hello, World!(C语言入门) 摘要:解题思路:使用printf函数,将Hello, World输入进去即可。注意事项:1.使用英文标点符号2.逗号后面有一个空格参考代码:#include<stdio.h>int main(){ p…… 题解列表 2023年01月11日 0 点赞 1 评论 1464 浏览 评分:8.7
1828: 蓝桥杯2015年第六届真题-密文搜索 摘要:解题思路:此题的难点大概在于对于题目的理解,在思维上并没有太大的难度,这个题的最终意思是,对每行密码都进行排列组合,形成的所有的新的字符串是否包含在s字符串中,若包含,则计入,反之。这里留下了一定的思…… 题解列表 2023年01月11日 0 点赞 0 评论 316 浏览 评分:0.0