题解列表
编写题解 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……
1044: [编程入门]三个字符串的排序(详细解答)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main() { char a[3][1000]; // 定义一个二维字符数组来存……
题解 1071: 二级C语言-阶乘公式求值
摘要:```
def fact(k):
jie = 1
for i in range(1, k + 1):
jie = jie / i
return jie……
蓝桥杯算法提高VIP-Pascal三角
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main(){
int a, d[100000], e[1……
2861: 验证子串
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#define maxn 205char cmp(char……
利用数组和循环结构的题解(C语言)
摘要:解题思路:将用户输入字母利用ASCII码+4来进行破译。注意事项:不了解ASCII码的可以先去学习一下ASCII码。参考代码:#include<stdio.h>int main(){ char ……