代码比较长,建议耐心食用 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int findchar(char a[]…… 题解列表 2021年04月11日 0 点赞 2 评论 960 浏览 评分:9.9
思路清晰C语言代码 摘要:解题思路:首先,我们要先先判断出哪些数字中含有 2 ,0 ,1 ,9 ,我们可以设置一个函数fun来判断通过while 循环 ,把每一位数都给模出来,然后和 2 ,0 ,1, 9, 这四个数字进行比较…… 题解列表 2021年04月11日 0 点赞 0 评论 623 浏览 评分:9.9
题目 1434: 蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int a[7]; int n,n1; int main(){ …… 题解列表 2021年04月11日 0 点赞 0 评论 354 浏览 评分:9.9
1041: [编程入门]宏定义之找最大数 摘要:解题思路:用了if语句注意事项:要写两个cout << fixed << setprecision(3) << a << endl;参考代码:#include<bits/stdc++.h>using…… 题解列表 2021年04月11日 0 点赞 0 评论 426 浏览 评分:9.9
题目 1807: [编程基础]输入输出练习之格式控制 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%-8d%-…… 题解列表 2021年04月11日 0 点赞 1 评论 3304 浏览 评分:9.9
优质题解 蓝桥杯2015年第六届真题-移动距离-题解C++详细注释 摘要:解题思路:当w=6,m=14,n=5列数相减+横坐标(5-2)参考代码:#include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2021年04月11日 0 点赞 0 评论 806 浏览 评分:9.9
数据结构-字符串连接(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char…… 题解列表 2021年04月11日 0 点赞 0 评论 896 浏览 评分:9.9
数据结构-字符串插入(C语言描述) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[256]={'\0'…… 题解列表 2021年04月11日 0 点赞 0 评论 522 浏览 评分:9.9
棋盘多项式 (JAVA) 摘要:解题思路: 注意事项:参考代码:看题解没有java 来个java题解import java.util.Scanner; public class Main09 { public …… 题解列表 2021年04月12日 0 点赞 0 评论 827 浏览 评分:9.9
[算法提高VIP]贪吃的大嘴 摘要:解题思路:1.确认边界条件 第一行 第一列题目要求是刚好满足美味度的最少吃发,那么动态转移方程就是 当前物品美味度正好等于j 那么就是1 …… 题解列表 2021年04月12日 0 点赞 0 评论 753 浏览 评分:9.9