题解列表

筛选

C语言调用函数求阶乘

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>long long fun(int x){ long long y=0; if(x==1) retu……

2920: 分数线划定

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u {     string str;     int……

2919: 奖学金

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; struct u { int xh;     int yv;  ……

注意爆int(错了十几次)

摘要:1. 打表import java.util.Scanner; public class Main {     static int N = 1010, mod = 1000000007;  ……

【Java】计算两个数的和

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[]args)……

围圈报数(python)

摘要:解题思路:注意事项:参考代码:def josephus(n, m):    # 创建编号列表    people = list(range(1, n + 1))    # 记录出列的顺序    ord……

全排列(python)

摘要:解题思路:注意事项:参考代码:def permutations(s, prefix=""):    if len(s) == 0:        print(prefix)    else:     ……

收费的题解

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