题解列表

筛选

公式and代码

摘要:解题思路:a1+(n-1)*d            a2-a1=d注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ ……

单词反转(遍历)

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

编写题解 2771: 大象喝水

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double h,r;    cin>>h>>r; ……

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

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

2798;整数序列的元素最大跨度值

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;//老师教的int main(){//老师教的   long long m=1e18;//老师教的   int  ……

鸡兔同笼--java语言

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

printf基础练习--java语言

摘要:解题思路:注意事项:八进制、十六进制输出表示的符号参考代码:import java.util.Scanner; public class Main { public static void ……