[编程入门]自定义函数之字符提取 Python解决 摘要:解题思路: 简单的if参考代码:list = ['a', 'e', 'i' ,'o', 'u']def find(…… 题解列表 2021年08月20日 0 点赞 0 评论 639 浏览 评分:0.0
[编程入门]自定义函数之数字分离 Python解决 摘要:解题思路: 遍历即可参考代码:number = input()for i in number: print(i,end=" ")…… 题解列表 2021年08月20日 0 点赞 0 评论 288 浏览 评分:0.0
用了5种排序算法来解决(Java代码) 摘要:```java package lanqiao; import java.math.BigInteger; import java.util.Scanner; /* * 题目 17…… 题解列表 2021年08月20日 0 点赞 0 评论 644 浏览 评分:0.0
drdsgfgfdsgdsfgdfsg 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "string.h"int main(){ int n; scanf("%d", &n); for (int i =…… 题解列表 2021年08月20日 0 点赞 0 评论 343 浏览 评分:0.0
数组距离qdqdqwd 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include "math.h"int main() { int a, b; scanf("%d%d", &a, &b); int …… 题解列表 2021年08月20日 0 点赞 0 评论 261 浏览 评分:0.0
两种方法(C++) 摘要:解题思路:注意事项:参考代码:1.#include<iostream> #include <algorithm> #include <string> using namespace std;…… 题解列表 2021年08月21日 0 点赞 0 评论 271 浏览 评分:0.0
编写题解 1481: 蓝桥杯算法提高VIP-剪刀石头布 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())if (a==0 and b==2) or (a==1 and b==0) or (a==2 and b==1):…… 题解列表 2021年08月22日 0 点赞 0 评论 375 浏览 评分:0.0
C语言 精简递归 【排队买票】 摘要:#include<stdio.h>int array(int, int, int);int array(int n, int k, int sum) //找出每一种排列方法{…… 题解列表 2021年08月22日 0 点赞 0 评论 428 浏览 评分:0.0
是小白就来我这里吧!全是简单代码! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int i,n;char a[100];gets(a);n=strlen(a);for(i=0;i<n;i++){…… 题解列表 2021年08月22日 0 点赞 0 评论 366 浏览 评分:0.0
字符串分类统计另一种方法 摘要:解题思路:注意事项:参考代码:int count1=0,count2=0,count3=0,count4=0; int i; char str[200]; gets(str); for(i=0;str…… 题解列表 2021年08月23日 0 点赞 0 评论 339 浏览 评分:0.0