题解列表

筛选

阶乘最短最简洁题解;

摘要:解题思路:主要就是公式的运用;注意事项参考代码:#include<stdio.h>double fact(int k);int main(){    int n , i;    double num;……

最简介易懂示例!!!

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 200int main(){    int n,i,num;    int arr[N];    while(sca……

1749: 字符排序(C++题解)

摘要:## 上代码!里面详细教程 ```cpp /* 思路: 1.定义整数n和字符串s 2.输入n 3.for循环输入s 4.快排sort (格式):sort(s.begin(),s.end……

kmp字符匹配

摘要:参考代码:import java.util.Scanner; class Main { public static void main(String[] args) { Scanner sc = n……

小题不必大做

摘要:解题思路:小题不必大做注意事项:参考代码:a, b, c = input().split() list1 = [a, b, c] print(max(list1))……