编写题解 1030: [编程入门]二维数组的转置--解题 摘要:解题思路:注意事项:输出记得对准格式,空格和换行参考代码:#include<stdio.h>#include<iostream>using namespace std;int main (){ …… 题解列表 2022年03月02日 0 点赞 0 评论 328 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转--解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<iostream>using namespace std;char change(…… 题解列表 2022年03月02日 0 点赞 0 评论 327 浏览 评分:0.0
1487: 蓝桥杯算法提高VIP-不同单词个数统计 摘要:解题思路:注意事项:参考代码:import java.util.HashSet;import java.util.Scanner;public class Main { public stati…… 题解列表 2022年03月02日 0 点赞 0 评论 547 浏览 评分:0.0
python-连接乘积 摘要:解题思路:注意事项:参考代码:def f(): R = set() for i in range(1,10000): temp = '&a 题解列表 2022年03月02日 0 点赞 0 评论 408 浏览 评分:0.0
python-选择排序 摘要:解题思路:注意事项:参考代码:def f(A,now): global n if now == n: ret 题解列表 2022年03月02日 0 点赞 0 评论 451 浏览 评分:0.0
自定义函数之数字分离-题解 摘要:解题思路:注意事项:注意:replace (""," ")如果写在end=" 之前会提示格式错误参考代码:def fenli(inp): #定义字符分离函数 …… 题解列表 2022年03月02日 0 点赞 0 评论 341 浏览 评分:0.0
数的统计c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>#include<cstring>…… 题解列表 2022年03月02日 0 点赞 0 评论 381 浏览 评分:0.0
最直观粗暴的解题方法 摘要:写中等题写了几天写不出,写几道简单题压压惊;注意:审题发现本题的数据量很小,直接用二维数组暴力解决就好了,不需要任何技巧;二维数组的第一项存放某一段成绩的个数,往后存这一段成绩的数据;参考代码:#in…… 题解列表 2022年03月02日 0 点赞 0 评论 412 浏览 评分:0.0
大数加法 C++ 模拟 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; const int MAX = 1010; …… 题解列表 2022年03月02日 0 点赞 0 评论 611 浏览 评分:0.0
python-铺地毯 摘要:解题思路:注意事项:参考代码:def f(n): X = [[0,0] for i in range(n+1)] Y = [[0,0] for i in range(n+1…… 题解列表 2022年03月02日 0 点赞 0 评论 572 浏览 评分:0.0