题解列表
虽然麻烦了不少,但是思路很简单
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class test1255 {
/**
* @param args
*/
……
蓝桥杯算法训练VIP-瓷砖铺放
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;
public class Main {
/**
* @param args
*/
p……
这就是个冒泡排序bubble_Sort
摘要:解题思路:每次只能交换两个相邻的 升序不交换 降序才交换,这不就是冒泡排序吗- -
注意事项:拿一个cnt变量记录交换了多少次即可
参考代码:
```
public cl……
简单python走起
摘要:解题思路:注意事项:参考代码:mas=input().split()
mas_1=[len(i) for i in mas ]
mx=mas_1.index(max(mas_1))
print(……
简单 易懂 矩阵转换
摘要:输入时按行输入1 1 12 2 23 3 3输出时按列输出1 2 31 2 31 2 3#include <stdio.h>#include <stdlib.h>int main(){ int ……
简单python走起
摘要:解题思路:注意事项:参考代码:def cc(n):
a=list(str(n))
b=list(str(n))
a.sort(reverse=True)
b.……
简单python走起
摘要:解题思路:注意事项:参考代码:for i in range(100,335):
l=[]
a=i
b=2*i
c=3*i
l.extend(……
容易理解的C语言代码
摘要:解题思路:注意事项: 数组长度要足够大,不然存储不了,空间不够参考代码:#include <stdio.h>
#include <string.h>
int main()
{
i……