小菜鸡------C语言通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; while (~scanf("%d %d", &n, &m)) //输入n,m …… 题解列表 2022年03月23日 0 点赞 1 评论 497 浏览 评分:9.9
1048: 自定义函数之字符串拷贝(函数+指针即可) 摘要:解题思路:会指针的话会比较好理解。注意事项:参考代码:#include<stdio.h> void fz_kb(int n,char *p,int m) { p+=m-1;…… 题解列表 2022年03月23日 0 点赞 0 评论 516 浏览 评分:9.9
字符串输入输出函数 摘要:```cpp #include using namespace std; double GetReal(double real){ cout…… 题解列表 2022年03月23日 0 点赞 0 评论 352 浏览 评分:0.0
蓝桥杯基础练习VIP-矩形面积交 摘要:```cpp #include using namespace std; int main() { double d1x,d1y,d2x,d2y,d3x,d3y,d4x,d4y,s=…… 题解列表 2022年03月23日 0 点赞 0 评论 407 浏览 评分:0.0
运用插空排序解题1117:K-进制数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int fun(int a,int b)//a的b次方{ int i,sum=1; for(i=0;i<b;i++)sum…… 题解列表 2022年03月23日 0 点赞 0 评论 365 浏览 评分:0.0
1043 三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d", &a, &b,&c); if(a>b) …… 题解列表 2022年03月23日 0 点赞 0 评论 449 浏览 评分:9.9
蓝桥杯2019年第十届省赛真题-特别数的和 java 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2022年03月23日 0 点赞 0 评论 311 浏览 评分:0.0
数组递归,还能求第n个数 摘要:参考代码:#include<stdio.h>int main(){float a[100]={2,3}; float b[100]={1,2}; int n=0; scanf("%d",&n); i…… 题解列表 2022年03月23日 0 点赞 0 评论 546 浏览 评分:0.0
蓝桥杯基础练习VIP-数的读法Python版解法 摘要:解题思路: 首先判断输入的串的位数,根据位数分为三类,第一类是大于8位,第二类是大于4位并且小于9位,第三类是小于5位,读的时候分为三个级别,个级、万级、亿级,分别写三个函数。注意事项:这里说一下第一…… 题解列表 2022年03月23日 0 点赞 5 评论 773 浏览 评分:9.9
模拟兰顿蚂蚁 摘要:解题思路:模拟过程参考代码:```rows, cols = map(int, input().split()) l = [list(map(int, input().split())) for i …… 题解列表 2022年03月23日 0 点赞 0 评论 277 浏览 评分:0.0