题解列表

筛选

鸡兔同笼--java语言

摘要:解题思路:    通过数学思维 将公式列出    假设鸡a,兔b    在已知头x,脚y时,可得:        a+b = x;        2a + (x-b)4 = y;    

A+B for Input-Output Practice (II) python代码

摘要:这几个题真的有点没活了,实在不行去咬打火机,pass意思就是跳过,数组的长度小于等于1passwhile True:    try:        a = list(map(int, input().……

单词反转(遍历)

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main {    public static……

利用C++完成选择排序

摘要:解题思路:注意事项:参考代码:#include<iostream>#define totalnum 10using namespace std;int array[totalnum];void jud……