川哥的吩咐-题解(C语言代码) 摘要:```c #include #include #include #define max(a,b) a>b? a:b /* reverse:将字符串进行倒置的操作 @s:要倒置字符串的…… 题解列表 2020年07月25日 0 点赞 0 评论 696 浏览 评分:6.0
蓝桥杯基础练习VIP-2n皇后问题-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class llq1{ static int n,ans; static int[][]a=new int…… 题解列表 2020年07月25日 0 点赞 0 评论 685 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量-题解(Python代码) 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) for i in range(1,500): if i%a==0 and i%…… 题解列表 2020年07月25日 0 点赞 0 评论 594 浏览 评分:0.0
蓝桥杯算法提高-奥运会开幕式-题解(C++代码)--笔记 摘要:解题思路:约瑟夫环问题参考代码:#include<bits/stdc++.h> using namespace std; int fx(int n,int m) { return n …… 题解列表 2020年07月25日 0 点赞 0 评论 816 浏览 评分:9.9
[编程入门]宏定义的练习-题解(C语言代码) 摘要:!!!!!!!#include<stdio.h>#define gs a%bint main(){ int a,b; scanf("%d%d",&a,&b); gs; printf("%d\n",gs…… 题解列表 2020年07月25日 0 点赞 3 评论 764 浏览 评分:8.0
[编程入门]带参数宏定义练习-题解(C语言代码) 摘要:!!!!!!!#include<stdio.h>#define change(a,b) t=a,a=b,b=tint main(){ int a,b,t; scanf("%d%d",&a,&b); c…… 题解列表 2020年07月25日 0 点赞 0 评论 1599 浏览 评分:9.9
[编程入门]自定义函数之字符类型统计-题解(C语言代码) 摘要:!!!!!!!#include<stdio.h>#include<string.h>void tj(char a[]){ int l,i,zm=0,sz=0,kg=0,qt=0; l=strlen(a…… 题解列表 2020年07月25日 0 点赞 1 评论 345 浏览 评分:9.9
[编程入门]自定义函数之数字分离-题解(C语言代码) 摘要:!!!!!!!#include<stdio.h>void szfl(){ int i,a,g,s,b,q; scanf("%d",&a);g=a%10; s=a%100/10; b=a/100%10;…… 题解列表 2020年07月25日 0 点赞 1 评论 813 浏览 评分:7.3
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>/*double dfs(int x){ if(x<0) retur…… 题解列表 2020年07月25日 0 点赞 0 评论 406 浏览 评分:0.0
[编程入门]自定义函数之字符提取-题解(C语言代码) 摘要:解题思路:!!!注意事项:!!!参考代码:!#include<stdio.h>#include<string.h>int zftq(char a[],char b[]){ int i,j=0,l,t;…… 题解列表 2020年07月25日 0 点赞 2 评论 1106 浏览 评分:9.9