1466: 蓝桥杯基础练习VIP-字符串对比(C++简单解) 摘要: ```cpp #include #include #include using namespace std; int checkRelation(const string& s…… 题解列表 2023年07月31日 0 点赞 0 评论 397 浏览 评分:9.9
自定义函数之整数处理(新手小白也能学会的编程) 摘要:解题思路:题目要求使用三个函数,1、输入可以直接用main函数。2、将其中最小的数与第一个数对换,把最大的数与最后一个数对换用自己的函数int F(int a[10])。3、用PR函数输出要求的结果。…… 题解列表 2023年07月31日 0 点赞 0 评论 506 浏览 评分:9.9
绝对值排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>void sort(int a[100],int len){ int…… 题解列表 2023年08月01日 0 点赞 0 评论 338 浏览 评分:0.0
最大公约数与最小公倍数(C语言) 摘要:解题思路: 利用定义法求解。注意事项: 不要使用中文输入法编写代码。参考代码:#include<stdio.h>int main(){ int m,n,i,j; int max = 0…… 题解列表 2023年08月01日 0 点赞 0 评论 366 浏览 评分:9.9
1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int b[4]={0,0,0,0}; char a[200]; for (int i = 0; i != 2…… 题解列表 2023年08月01日 0 点赞 0 评论 382 浏览 评分:0.0
题解 1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:三个函数,g1 g2 g3主函数进行判断注意事项:1,变量类型 double,输出三位小数2,#include<math.h>3,g3中的输出表示参考代码:#include<stdio.h>…… 题解列表 2023年08月01日 0 点赞 0 评论 415 浏览 评分:9.9
2878: 计算矩阵边缘元素之和(C语言) 摘要: #include int main() { int m, n; scanf("%d %d", &m, &n); int a[m][n]; for (int i =…… 题解列表 2023年08月01日 0 点赞 0 评论 478 浏览 评分:0.0
x皇后问题—字典序最小(dfs) 摘要:解题思路:dfs回溯即可,第一个即为字典序最小注意事项:记得终止程序参考代码:#include<iostream> using namespace std; const int N=10010; …… 题解列表 2023年08月01日 0 点赞 0 评论 377 浏览 评分:9.9
八皇后(前三行)(总个数) 摘要:解题思路:dfs回溯 前三行要判断注意事项:对角线表示参考代码:#include<iostream> using namespace std; const int N=10010; int n,…… 题解列表 2023年08月01日 0 点赞 0 评论 409 浏览 评分:9.9
8皇后 改(dfs) 摘要:解题思路:基本的dfs 改改最后的操作即可注意事项:对角线的表示参考代码:#include<iostream> using namespace std; const int N=9; int n…… 题解列表 2023年08月01日 0 点赞 0 评论 331 浏览 评分:9.9