题解列表
2861: 验证子串
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#define maxn 205char cmp(char……
蓝桥杯算法提高VIP-Pascal三角
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main(){
int a, d[100000], e[1……
题解 1071: 二级C语言-阶乘公式求值
摘要:```
def fact(k):
jie = 1
for i in range(1, k + 1):
jie = jie / i
return jie……
1044: [编程入门]三个字符串的排序(详细解答)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main() { char a[3][1000]; // 定义一个二维字符数组来存……
编写题解 1096:一眼丁真的扫雷
摘要:#include<stdio.h>
int x(char s[][100],int i,int j,int n,int m);
int main(){
int n,m,c=0,k[100][1……
骗分?(不知道这题本意是该用什么方法(x_x))
摘要:解题思路:
- 注意题目多组输入是指有着给的样例那样的多组,
- 一眼看去似乎是从左到右挨个比较,但给的数据好像很大,老超时,就想着能不能每次遍历两个元素,一个指向开头,一个指向数组中间,详细的看……
编写题解 2816: 统计满足条件的4位数个数
摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<math.h>int main(){ int n,k=0; scanf("%d",&n); int a……