编写题解 1391: 震宇大神的杀毒软件 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void sort(int *a, int n); int main() { int arr[100] = {0}; …… 题解列表 2023年01月08日 0 点赞 0 评论 366 浏览 评分:0.0
编写题解 1771: [编程入门]链表之节点删除 C++ 第一次尝试用list容器 摘要:解题思路:注意事项:参考代码: #include<iostream> #include<list>struct Lnode{ int id; int score;};int main()…… 题解列表 2023年01月08日 0 点赞 0 评论 356 浏览 评分:0.0
通过递归解决各种问题 摘要:解题思路:找到递归思路注意事项:看清题目参考代码:#include<stdio.h>int qiua(int a){ if(a==1) return 1; return qiua(a-1)+a;}in…… 题解列表 2023年01月08日 0 点赞 0 评论 345 浏览 评分:0.0
判断三位数以内的水仙花数 摘要:解题思路:直接用水仙花数的定义翻译成c语言注意事项:注意灵活的思路。参考代码:#include <stdio.h>int main(){ int a,b,c,number; scanf("%d",&…… 题解列表 2023年01月08日 0 点赞 0 评论 391 浏览 评分:0.0
蓝桥杯算法提高VIP-文本加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[100]; get…… 题解列表 2023年01月08日 0 点赞 0 评论 362 浏览 评分:0.0
蓝桥杯基础练习VIP-回形取数(Python语言全模拟) 摘要:参考代码:def opt(i): global x,y,lst,step #这里需要注意一下,当到达每行或者每列的边界时,由于主程序中循环的边界问题未能将边界元素添加进去,所以放在…… 题解列表 2023年01月08日 0 点赞 0 评论 601 浏览 评分:0.0
编写题解 2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:库函数<ctype.h>的使用注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>void change(cha…… 题解列表 2023年01月08日 0 点赞 0 评论 591 浏览 评分:0.0
编写题解 1211: 平方和与立方和 摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> int main(void) { long long a, b; long lo…… 题解列表 2023年01月09日 0 点赞 0 评论 526 浏览 评分:0.0
编写题解 1210: 小明A+B 摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> int main(void) { //输入数据的第一行为一个正整数T, 表示测试数据的…… 题解列表 2023年01月09日 0 点赞 0 评论 391 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 正序打印和逆序打印 摘要:解题思路:注意事项:参考代码:#include <string.h> #include <stdio.h> int main(void) { char a[100]={0}; int …… 题解列表 2023年01月09日 0 点赞 0 评论 468 浏览 评分:0.0