[编程入门]自定义函数之数字分离-题解(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 评论 840 浏览 评分:7.3
[编程入门]自定义函数之字符类型统计-题解(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 评论 367 浏览 评分:9.9
[编程入门]带参数宏定义练习-题解(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 评论 1641 浏览 评分: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 评论 785 浏览 评分:8.0
蓝桥杯算法提高-奥运会开幕式-题解(C++代码)--笔记 摘要:解题思路:约瑟夫环问题参考代码:#include<bits/stdc++.h> using namespace std; int fx(int n,int m) { return n …… 题解列表 2020年07月25日 0 点赞 0 评论 861 浏览 评分:9.9
蓝桥杯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 评论 617 浏览 评分:0.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 评论 740 浏览 评分:0.0
川哥的吩咐-题解(C语言代码) 摘要:```c #include #include #include #define max(a,b) a>b? a:b /* reverse:将字符串进行倒置的操作 @s:要倒置字符串的…… 题解列表 2020年07月25日 0 点赞 0 评论 746 浏览 评分:6.0
蓝桥杯算法提高VIP-班级排名-题解(Python代码) 摘要:解题思路:注意事项:参考代码:score={} n=int(input()) for i in range(n): name=input() score[nam…… 题解列表 2020年07月25日 0 点赞 0 评论 465 浏览 评分:0.0
蓝桥杯算法提高-奥运会开幕式-题解(C++代码) 摘要:``` #include #include using namespace std; vector s; int main() { int n,m; cin>>n>>m;…… 题解列表 2020年07月25日 0 点赞 0 评论 656 浏览 评分:0.0